Skip to content

Commit cf1c9cb

Browse files
egovframe-boot-sample-java-config v4.2.0 FINAL
1 parent 96e71f8 commit cf1c9cb

73 files changed

Lines changed: 1001 additions & 4983 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 39 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>egov</groupId>
66
<artifactId>boot-example</artifactId>
7-
<packaging>war</packaging>
7+
<packaging>jar</packaging>
88
<version>1.0.0</version>
99
<name>boot-example</name>
1010
<url>http://www.egovframe.go.kr</url>
@@ -17,14 +17,14 @@
1717
</licenses>
1818

1919
<parent>
20-
<groupId>org.springframework.boot</groupId>
21-
<artifactId>spring-boot-starter-parent</artifactId>
22-
<version>2.7.0</version>
23-
</parent>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-starter-parent</artifactId>
22+
<version>2.7.12</version>
23+
</parent>
2424

2525
<properties>
26-
<spring.maven.artifact.version>5.3.20</spring.maven.artifact.version>
27-
<org.egovframe.rte.version>4.1.0</org.egovframe.rte.version>
26+
<spring.maven.artifact.version>5.3.27</spring.maven.artifact.version>
27+
<org.egovframe.rte.version>4.2.0</org.egovframe.rte.version>
2828
</properties>
2929

3030
<repositories>
@@ -62,35 +62,12 @@
6262
</exclusions>
6363
</dependency>
6464
<dependency>
65-
<groupId>jakarta.platform</groupId>
66-
<artifactId>jakarta.jakartaee-api</artifactId>
67-
<version>9.1.0</version>
68-
<scope>provided</scope>
69-
</dependency>
70-
<dependency>
71-
<groupId>org.apache.tomcat.embed</groupId>
72-
<artifactId>tomcat-embed-core</artifactId>
73-
<version>9.0.73</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>org.apache.tomcat.embed</groupId>
77-
<artifactId>tomcat-embed-el</artifactId>
78-
<version>9.0.73</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>org.apache.tomcat.embed</groupId>
82-
<artifactId>tomcat-embed-jasper</artifactId>
83-
<version>9.0.73</version>
84-
</dependency>
85-
<dependency>
86-
<groupId>org.apache.tomcat.embed</groupId>
87-
<artifactId>tomcat-embed-websocket</artifactId>
88-
<version>9.0.73</version>
65+
<groupId>org.springframework.boot</groupId>
66+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
8967
</dependency>
9068
<dependency>
91-
<groupId>org.apache.tomcat</groupId>
92-
<artifactId>tomcat-annotations-api</artifactId>
93-
<version>9.0.73</version>
69+
<groupId>org.springframework.boot</groupId>
70+
<artifactId>spring-boot-starter-validation</artifactId>
9471
</dependency>
9572
<dependency>
9673
<groupId>org.springframework.boot</groupId>
@@ -126,54 +103,45 @@
126103
<version>${org.egovframe.rte.version}</version>
127104
</dependency>
128105

129-
<dependency>
130-
<groupId>org.apache.taglibs</groupId>
131-
<artifactId>taglibs-standard-impl</artifactId>
132-
<version>1.2.5</version>
133-
</dependency>
134-
<dependency>
135-
<groupId>org.antlr</groupId>
136-
<artifactId>antlr</artifactId>
137-
<version>3.5</version>
138-
</dependency>
139106
<dependency>
140107
<groupId>org.hsqldb</groupId>
141108
<artifactId>hsqldb</artifactId>
109+
<version>2.7.2</version>
110+
<classifier>jdk8</classifier>
142111
</dependency>
143112
<dependency>
144113
<groupId>org.projectlombok</groupId>
145114
<artifactId>lombok</artifactId>
115+
<version>1.18.28</version>
146116
<optional>true</optional>
147117
</dependency>
148-
<!-- mySql DataSource 추가 -->
149118
<dependency>
150-
<groupId>org.springframework.boot</groupId>
151-
<artifactId>spring-boot-starter-data-jdbc</artifactId>
119+
<groupId>org.hibernate</groupId>
120+
<artifactId>hibernate-entitymanager</artifactId>
121+
<version>5.6.15.Final</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>org.springframework.boot</groupId>
125+
<artifactId>spring-boot-starter-test</artifactId>
126+
<scope>test</scope>
152127
</dependency>
153-
<dependency>
154-
<groupId>mysql</groupId>
155-
<artifactId>mysql-connector-java</artifactId>
156-
<version>8.0.29</version>
157-
</dependency>
158-
<!-- mySql DataSource 추가 -->
159128
</dependencies>
160129

161-
<build>
162-
<plugins>
163-
<plugin>
164-
<groupId>org.springframework.boot</groupId>
165-
<artifactId>spring-boot-maven-plugin</artifactId>
166-
<configuration>
167-
<executable>true</executable>
168-
<excludes>
169-
<exclude>
170-
<groupId>org.projectlombok</groupId>
171-
<artifactId>lombok</artifactId>
172-
</exclude>
173-
</excludes>
174-
</configuration>
175-
</plugin>
176-
</plugins>
177-
</build>
130+
<build>
131+
<plugins>
132+
<plugin>
133+
<groupId>org.springframework.boot</groupId>
134+
<artifactId>spring-boot-maven-plugin</artifactId>
135+
<configuration>
136+
<excludes>
137+
<exclude>
138+
<groupId>org.projectlombok</groupId>
139+
<artifactId>lombok</artifactId>
140+
</exclude>
141+
</excludes>
142+
</configuration>
143+
</plugin>
144+
</plugins>
145+
</build>
178146

179147
</project>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package egovframework.example;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
6+
@SpringBootApplication
7+
public class EgovBootApplication {
8+
9+
public static void main(String[] args) {
10+
SpringApplication.run(EgovBootApplication.class, args);
11+
}
12+
13+
}

src/main/java/egovframework/example/boot/web/EgovBootApplication.java

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/main/java/egovframework/example/boot/web/EgovWebMvcConfiguration.java

Lines changed: 0 additions & 123 deletions
This file was deleted.

src/main/java/egovframework/example/cmmn/EgovSampleExcepHndlr.java

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)