formatting

This commit is contained in:
nkchauhan003
2022-12-15 16:16:47 +05:30
parent 267972e472
commit 42a05bda49
7 changed files with 122 additions and 124 deletions

162
pom.xml
View File

@@ -1,85 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.6</version> <version>2.7.6</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>com.cb</groupId> <groupId>com.cb</groupId>
<artifactId>spring-security-form-login</artifactId> <artifactId>spring-security-form-login</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>spring-security-form-login</name> <name>spring-security-form-login</name>
<description>Spring Security + Thymeleaf + MySql</description> <description>Spring Security + Thymeleaf + MySql</description>
<properties> <properties>
<java.version>17</java.version> <java.version>17</java.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId> <artifactId>spring-boot-starter-actuator</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId> <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId> <artifactId>spring-boot-starter-validation</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId> <artifactId>spring-boot-starter-security</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId> <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.thymeleaf.extras</groupId> <groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId> <artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId> <artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope> <scope>runtime</scope>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.mysql</groupId> <groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId> <artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.security</groupId> <groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId> <artifactId>spring-security-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@@ -51,6 +51,4 @@ public class LoginController {
userService.saveUser(userDto); userService.saveUser(userDto);
return "redirect:/registration?success"; return "redirect:/registration?success";
} }
} }

View File

@@ -1,7 +1,6 @@
# JPA # JPA
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.hibernate.ddl-auto=update spring.jpa.hibernate.ddl-auto=update
# Connection Pool # Connection Pool
spring.datasource.hikari.connection-timeout=20000 spring.datasource.hikari.connection-timeout=20000
spring.datasource.hikari.minimum-idle=10 spring.datasource.hikari.minimum-idle=10
@@ -9,7 +8,6 @@ spring.datasource.hikari.maximum-pool-size=10
spring.datasource.hikari.idle-timeout=10000 spring.datasource.hikari.idle-timeout=10000
spring.datasource.hikari.max-lifetime=1000 spring.datasource.hikari.max-lifetime=1000
spring.datasource.hikari.auto-commit=true spring.datasource.hikari.auto-commit=true
# MySql # MySql
spring.datasource.url=jdbc:mysql://localhost/spring-security-form-login spring.datasource.url=jdbc:mysql://localhost/spring-security-form-login
spring.datasource.username=root spring.datasource.username=root

View File

@@ -2,9 +2,9 @@
<html lang="en" xmlns:th="http://www.thymeleaf.org"> <html lang="en" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" rel="stylesheet">
<title>Login</title> <title>Login</title>
</head> </head>
@@ -20,22 +20,24 @@
<div class="alert alert-success">You have been logged out !!!</div> <div class="alert alert-success">You have been logged out !!!</div>
</div> </div>
<form <form
class="form-horizontal"
method="post" method="post"
role="form" role="form"
th:action="@{/login}" th:action="@{/login}"
class="form-horizontal"
> >
<div class="mb-3"> <div class="mb-3">
<label for="password" class="form-label">Email</label> <label class="form-label" for="password">Email</label>
<input type="email" class="form-control" id="username" name="username" placeholder="Enter email address"> <input class="form-control" id="username" name="username" placeholder="Enter email address"
type="email">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="password" class="col-sm-2 col-form-label">Password</label> <label class="col-sm-2 col-form-label" for="password">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Enter password"> <input class="form-control" id="password" name="password" placeholder="Enter password"
type="password">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<button type="submit" class="btn btn-primary mb-3">Login</button> <button class="btn btn-primary mb-3" type="submit">Login</button>
or <a th:href="@{/registration}" class="link-primary">Register</a> or <a class="link-primary" th:href="@{/registration}">Register</a>
</div> </div>
</form> </form>
</div> </div>
@@ -43,9 +45,9 @@
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" <script crossorigin="anonymous"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script> src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</body> </body>
</html> </html>

View File

@@ -2,9 +2,9 @@
<html lang="en" xmlns:th="http://www.thymeleaf.org"> <html lang="en" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" rel="stylesheet">
<title>Registration</title> <title>Registration</title>
</head> </head>
@@ -25,26 +25,26 @@
</div> </div>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="name" class="form-label">Name</label> <label class="form-label" for="name">Name</label>
<input type="text" class="form-control" id="name" name="name"> <input class="form-control" id="name" name="name" type="text">
<p th:errors="*{name}" class="text-danger" <p class="text-danger" th:errors="*{name}"
th:if="${#fields.hasErrors('name')}"></p> th:if="${#fields.hasErrors('name')}"></p>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="email" class="form-label">Email</label> <label class="form-label" for="email">Email</label>
<input type="email" class="form-control" id="email" name="email"> <input class="form-control" id="email" name="email" type="email">
<p th:errors="*{email}" class="text-danger" <p class="text-danger" th:errors="*{email}"
th:if="${#fields.hasErrors('email')}"></p> th:if="${#fields.hasErrors('email')}"></p>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="password" class="col-sm-2 col-form-label">Password</label> <label class="col-sm-2 col-form-label" for="password">Password</label>
<input type="password" class="form-control" id="password" name="password"> <input class="form-control" id="password" name="password" type="password">
<p th:errors="*{password}" class="text-danger" <p class="text-danger" th:errors="*{password}"
th:if="${#fields.hasErrors('password')}"></p> th:if="${#fields.hasErrors('password')}"></p>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<button type="submit" class="btn btn-primary mb-3">Register</button> <button class="btn btn-primary mb-3" type="submit">Register</button>
or <a th:href="@{/login}" class="link-primary">Login</a> or <a class="link-primary" th:href="@{/login}">Login</a>
</div> </div>
</form> </form>
</div> </div>
@@ -52,9 +52,9 @@
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" <script crossorigin="anonymous"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script> src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</body> </body>
</html> </html>

View File

@@ -2,9 +2,9 @@
<html lang="en" xmlns:sec="http://www.thymeleaf.org/extras/spring-security" xmlns:th="http://www.thymeleaf.org"> <html lang="en" xmlns:sec="http://www.thymeleaf.org/extras/spring-security" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" rel="stylesheet">
<title>User</title> <title>User</title>
</head> </head>
@@ -16,15 +16,15 @@
<div class="mt-2">Username: <span sec:authentication="principal.username"/></div> <div class="mt-2">Username: <span sec:authentication="principal.username"/></div>
<div class="mt-2"> Roles: <span sec:authentication="principal.authorities"/></div> <div class="mt-2"> Roles: <span sec:authentication="principal.authorities"/></div>
<div class="mt-5"><a th:href="@{/logout}" class="link-primary">Logout</a></div> <div class="mt-5"><a class="link-primary" th:href="@{/logout}">Logout</a></div>
</div> </div>
</div> </div>
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" <script crossorigin="anonymous"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script> src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</body> </body>
</html> </html>

View File

@@ -6,8 +6,8 @@ import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest @SpringBootTest
class ApplicationTests { class ApplicationTests {
@Test @Test
void contextLoads() { void contextLoads() {
} }
} }