File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed
src/main/java/com/bobocode/demo Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 18
18
19
19
<dependencies >
20
20
<dependency >
21
- <groupId >com.bobocode</groupId >
22
- <artifactId >java-web-course-util</artifactId >
23
- <version >1.0-SNAPSHOT</version >
21
+ <groupId >jakarta.servlet</groupId >
22
+ <artifactId >jakarta.servlet-api</artifactId >
23
+ <version >5.0.0</version >
24
+ <scope >provided</scope >
24
25
</dependency >
25
26
<dependency >
26
- <groupId >org.springframework.boot</groupId >
27
- <artifactId >spring-boot-starter-web</artifactId >
28
- <version >2.5.5</version >
27
+ <groupId >org.springframework</groupId >
28
+ <artifactId >spring-webmvc</artifactId >
29
+ <version >5.3.10</version >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >com.fasterxml.jackson.core</groupId >
33
+ <artifactId >jackson-databind</artifactId >
34
+ <version >2.12.5</version >
29
35
</dependency >
30
36
</dependencies >
31
37
Original file line number Diff line number Diff line change 1
1
package com .bobocode .demo ;
2
2
3
+ import lombok .SneakyThrows ;
4
+
3
5
public class DemoWebApp {
4
-
6
+ @ SneakyThrows
5
7
public static void main (String [] args ) {
6
8
7
9
}
You can’t perform that action at this time.
0 commit comments