Skip to content

Commit feb3f6e

Browse files
authored
Merge pull request #466 from NeoJumper/develop
수정사항 반영
2 parents 831b139 + c6bcd7c commit feb3f6e

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@
4242
<scope>test</scope>
4343
</dependency>
4444

45-
<dependency>
46-
<groupId>org.springframework.boot</groupId>
47-
<artifactId>spring-boot-starter-tomcat</artifactId>
48-
<scope>provided</scope>
49-
</dependency>
50-
5145
<!-- Spring Security-->
5246
<dependency>
5347
<groupId>org.springframework.boot</groupId>

src/main/java/com/kcc/banking/MicroBankingSystemApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
public class MicroBankingSystemApplication extends SpringBootServletInitializer {
1212

1313
@Override
14-
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
15-
return application.sources(MicroBankingSystemApplication.class);
14+
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
15+
return builder.sources(MicroBankingSystemApplication.class);
1616
}
1717

1818
public static void main(String[] args) {

src/main/java/com/kcc/banking/domain/employee/controller/EmployeeController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public String loginForm(@RequestParam(value = "error", required = false) String
1919
@RequestParam(value = "exception", required = false) String exception, Model model) {
2020
model.addAttribute("error", error);
2121
model.addAttribute("exception", exception);
22-
return "auth/login-form";
22+
return "/auth/login-form";
2323
}
2424

2525
@GetMapping("/page/manager/employee-save")

0 commit comments

Comments
 (0)