forked from DEVengersAssemble/airdnd-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DEVengersAssemble#1 from yujin0131/feature
Aws connetion
- Loading branch information
Showing
54 changed files
with
333 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding//src/main/webapp/WEB-INF/views/home.jsp=UTF-8 |
16 changes: 16 additions & 0 deletions
16
Airdnd_Back/src/main/java/com/airdnd/back/TestController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.airdnd.back; | ||
|
||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
import common.Common; | ||
|
||
@Controller | ||
public class TestController { | ||
|
||
@RequestMapping("/test") | ||
public String gotest() { | ||
return Common.VIEW_PATH + "test.jsp"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<%@ page language="java" contentType="text/html; charset=EUC-KR" | ||
pageEncoding="EUC-KR"%> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="EUC-KR"> | ||
<title>Insert title here</title> | ||
</head> | ||
<body> | ||
yujintest | ||
</body> | ||
</html> |
Binary file not shown.
Binary file added
BIN
+1.64 KB
...ack/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/com/airdnd/back/HomeController.class
Binary file not shown.
Binary file added
BIN
+599 Bytes
...ack/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/com/airdnd/back/TestController.class
Binary file not shown.
Binary file added
BIN
+342 Bytes
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/common/Common.class
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/mybatis/db.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
driver=oracle.jdbc.OracleDriver | ||
url=jdbc:oracle:thin:@localhost:1521:xe | ||
user=test | ||
password=1111 |
20 changes: 20 additions & 0 deletions
20
...nd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/mybatis/mapper/airdnd.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE mapper | ||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||
<mapper namespace=""> | ||
|
||
|
||
</mapper> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
18 changes: 18 additions & 0 deletions
18
...d_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/mybatis/mybatis-config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "HTTP://mybatis.org/dtd/mybatis-3-config.dtd"> | ||
|
||
<configuration> | ||
<settings> | ||
<setting name="cacheEnabled" value="false" /> | ||
<setting name="useGeneratedKeys" value="true" /> | ||
<setting name="defaultExecutorType" value="REUSE" /> | ||
</settings> | ||
|
||
<!-- <typeAliases> | ||
<typeAlias type="vo.AirdndVO" alias="airdnd"/> | ||
</typeAliases> --> | ||
|
||
<mappers> | ||
<!-- <mapper resource="config/mybatis/mapper/demem.xml" /> --> | ||
</mappers> | ||
</configuration> |
20 changes: 20 additions & 0 deletions
20
.../back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/spring/context/context-1-datasource.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:context="http://www.springframework.org/schema/context" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd | ||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> | ||
|
||
<context:property-placeholder | ||
location="classpath:config/mybatis/db.properties"/> | ||
|
||
<bean id="ds" class="org.apache.commons.dbcp.BasicDataSource"> | ||
<property name="driverClassName" value="${driver}"/> | ||
<property name="url" value="${url}"/> | ||
<property name="username" value="${user}"/> | ||
<property name="password" value="${password}"/> | ||
<property name="defaultAutoCommit" value="false"/> | ||
<property name="maxActive" value="10"/> | ||
</bean> | ||
|
||
</beans> |
16 changes: 16 additions & 0 deletions
16
...get/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/spring/context/context-2-mybatis.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> | ||
|
||
<!-- myBatis를 사용하기 위한 라이브러리 객체 생성 --> | ||
<bean id="factoryBean" class="org.mybatis.spring.SqlSessionFactoryBean"> | ||
<property name="dataSource" ref="ds"/> | ||
<property name="configLocation" value="classpath:config/mybatis/mybatis-config.xml"/> | ||
</bean> | ||
|
||
<bean id="sqlSessionBean" class="org.mybatis.spring.SqlSessionTemplate"> | ||
<constructor-arg ref="factoryBean"/> | ||
</bean> | ||
|
||
</beans> |
13 changes: 13 additions & 0 deletions
13
.../target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/spring/context/context-3-dao.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> | ||
|
||
|
||
|
||
<!-- <bean id="airdnd_daoBean" class="dao.AirdndDAO"> | ||
<property name="sqlSession" ref="sqlSessionBean"/> | ||
</bean> --> | ||
|
||
|
||
</beans> |
37 changes: 37 additions & 0 deletions
37
...ck/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/config/spring/mvc/servlet-context.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans:beans xmlns="http://www.springframework.org/schema/mvc" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:beans="http://www.springframework.org/schema/beans" | ||
xmlns:context="http://www.springframework.org/schema/context" | ||
xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd | ||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd | ||
http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> | ||
|
||
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure --> | ||
|
||
<!-- Enables the Spring MVC @Controller programming model --> | ||
<annotation-driven /> | ||
|
||
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory --> | ||
<resources mapping="/resources/**" location="/resources/" /> | ||
|
||
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory --> | ||
<!-- <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> | ||
<beans:property name="prefix" value="/WEB-INF/views/" /> | ||
<beans:property name="suffix" value=".jsp" /> | ||
</beans:bean> --> | ||
|
||
<!-- <context:component-scan base-package="com.korea.db" /> --> | ||
|
||
<!-- 컨트롤러 수동 생성시 autowired사용 가능하게 하는 속성 --> | ||
<context:annotation-config/> | ||
|
||
|
||
<!-- HomeController 수동생성 --> | ||
<beans:bean class="com.airdnd.back.HomeController"> | ||
<!-- <beans:property name="url" value="jdbc:ref="demem_daoBean"/> --> | ||
</beans:bean> | ||
|
||
<beans:bean class="com.airdnd.back.TestController"> | ||
</beans:bean> | ||
</beans:beans> |
41 changes: 41 additions & 0 deletions
41
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/classes/log4j.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd"> | ||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> | ||
|
||
<!-- Appenders --> | ||
<appender name="console" class="org.apache.log4j.ConsoleAppender"> | ||
<param name="Target" value="System.out" /> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" value="%-5p: %c - %m%n" /> | ||
</layout> | ||
</appender> | ||
|
||
<!-- Application Loggers --> | ||
<logger name="com.airdnd.back"> | ||
<level value="info" /> | ||
</logger> | ||
|
||
<!-- 3rdparty Loggers --> | ||
<logger name="org.springframework.core"> | ||
<level value="info" /> | ||
</logger> | ||
|
||
<logger name="org.springframework.beans"> | ||
<level value="info" /> | ||
</logger> | ||
|
||
<logger name="org.springframework.context"> | ||
<level value="info" /> | ||
</logger> | ||
|
||
<logger name="org.springframework.web"> | ||
<level value="info" /> | ||
</logger> | ||
|
||
<!-- Root Logger --> | ||
<root> | ||
<priority value="warn" /> | ||
<appender-ref ref="console" /> | ||
</root> | ||
|
||
</log4j:configuration> |
Binary file added
BIN
+4.36 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar
Binary file not shown.
Binary file added
BIN
+114 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/aspectjrt-1.6.10.jar
Binary file not shown.
Binary file added
BIN
+157 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/commons-dbcp-1.4.jar
Binary file not shown.
Binary file added
BIN
+94 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/commons-pool-1.5.4.jar
Binary file not shown.
Binary file added
BIN
+227 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/gson-2.8.0.jar
Binary file not shown.
Binary file added
BIN
+65.2 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.9.3.jar
Binary file not shown.
Binary file added
BIN
+314 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/jackson-core-2.9.3.jar
Binary file not shown.
Binary file added
BIN
+1.28 MB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/jackson-databind-2.9.3.jar
Binary file not shown.
Binary file added
BIN
+2.44 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/javax.inject-1.jar
Binary file not shown.
Binary file added
BIN
+16.9 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/jcl-over-slf4j-1.6.6.jar
Binary file not shown.
Binary file added
BIN
+15.7 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/json-simple-1.1.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+383 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/log4j-1.2.15.jar
Binary file not shown.
Binary file added
BIN
+1.55 MB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/mybatis-3.4.5.jar
Binary file not shown.
Binary file added
BIN
+52.1 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/mybatis-spring-1.3.1.jar
Binary file not shown.
Binary file added
BIN
+25.6 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/slf4j-api-1.6.6.jar
Binary file not shown.
Binary file added
BIN
+9.48 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/slf4j-log4j12-1.6.6.jar
Binary file not shown.
Binary file added
BIN
+324 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-aop-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+51.8 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-asm-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+576 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-beans-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+812 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-context-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+105 KB
...ack/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-context-support-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+439 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-core-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+172 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-expression-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+396 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-jdbc-3.2.2.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+236 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-tx-3.2.2.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+532 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-web-3.1.1.RELEASE.jar
Binary file not shown.
Binary file added
BIN
+560 KB
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/lib/spring-webmvc-3.1.1.RELEASE.jar
Binary file not shown.
36 changes: 36 additions & 0 deletions
36
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/spring/appServlet/servlet-context.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans:beans | ||
xmlns="http://www.springframework.org/schema/mvc" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:beans="http://www.springframework.org/schema/beans" | ||
xmlns:context="http://www.springframework.org/schema/context" | ||
xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd | ||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd | ||
http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> | ||
|
||
<!-- DispatcherServlet Context: defines this servlet's request-processing | ||
infrastructure --> | ||
|
||
<!-- Enables the Spring MVC @Controller programming model --> | ||
<annotation-driven /> | ||
|
||
<!-- Handles HTTP GET requests for /resources/** by efficiently serving | ||
up static resources in the ${webappRoot}/resources directory --> | ||
<resources mapping="/resources/**" location="/resources/" /> | ||
|
||
<!-- Resolves views selected for rendering by @Controllers to .jsp resources | ||
in the /WEB-INF/views directory --> | ||
<!-- <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> | ||
<beans:property name="prefix" value="/WEB-INF/views/" /> <beans:property | ||
name="suffix" value=".jsp" /> </beans:bean> --> | ||
|
||
<!-- <context:component-scan base-package="com.airdnd.back" /> --> | ||
<context:annotation-config /> | ||
|
||
<beans:bean class="com.airdnd.back.HomeController"> | ||
|
||
</beans:bean> | ||
|
||
|
||
|
||
</beans:beans> |
8 changes: 8 additions & 0 deletions
8
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/spring/root-context.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> | ||
|
||
<!-- Root Context: defines shared resources visible to all other web components --> | ||
|
||
</beans> |
14 changes: 14 additions & 0 deletions
14
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/views/home.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> | ||
<%@ page session="false" %> | ||
<html> | ||
<head> | ||
<title>yujintest</title> | ||
</head> | ||
<body> | ||
<h1> | ||
yujin | ||
</h1> | ||
|
||
<P> The time on the server is ${serverTime}. </P> | ||
</body> | ||
</html> |
12 changes: 12 additions & 0 deletions
12
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/views/test.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<%@ page language="java" contentType="text/html; charset=EUC-KR" | ||
pageEncoding="EUC-KR"%> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="EUC-KR"> | ||
<title>Insert title here</title> | ||
</head> | ||
<body> | ||
yujintest | ||
</body> | ||
</html> |
47 changes: 47 additions & 0 deletions
47
Airdnd_Back/target/back-1.0.0-BUILD-SNAPSHOT/WEB-INF/web.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> | ||
|
||
<filter> | ||
<filter-name>encodingFilter</filter-name> | ||
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> | ||
<init-param> | ||
<param-name>encoding</param-name> | ||
<param-value>utf-8</param-value> | ||
</init-param> | ||
</filter> | ||
|
||
<filter-mapping> | ||
<filter-name>encodingFilter</filter-name> | ||
<url-pattern>*.do</url-pattern> | ||
</filter-mapping> | ||
|
||
<!-- The definition of the Root Spring Container shared by all Servlets and Filters --> | ||
<context-param> | ||
<param-name>contextConfigLocation</param-name> | ||
<param-value>classpath*:config/spring/context/context-*.xml</param-value> | ||
</context-param> | ||
|
||
<!-- Creates the Spring Container shared by all Servlets and Filters --> | ||
<listener> | ||
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> | ||
</listener> | ||
|
||
<!-- Processes application requests --> | ||
<servlet> | ||
<servlet-name>appServlet</servlet-name> | ||
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> | ||
<init-param> | ||
<param-name>contextConfigLocation</param-name> | ||
<param-value>classpath:config/spring/mvc/servlet-context.xml</param-value> | ||
</init-param> | ||
<load-on-startup>1</load-on-startup> | ||
</servlet> | ||
|
||
<servlet-mapping> | ||
<servlet-name>appServlet</servlet-name> | ||
<url-pattern>/</url-pattern> | ||
</servlet-mapping> | ||
|
||
</web-app> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Airdnd_Back/target/m2e-wtp/web-resources/META-INF/maven/com.airdnd/back/pom.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#Generated by Maven Integration for Eclipse | ||
#Wed Aug 12 00:18:21 KST 2020 | ||
#Sat Aug 15 17:52:58 KST 2020 | ||
version=1.0.0-BUILD-SNAPSHOT | ||
groupId=com.airdnd | ||
m2e.projectName=Airdnd_Back | ||
m2e.projectLocation=C\:\\yujin_project\\Airdnd_Back | ||
m2e.projectLocation=C\:\\Back-end\\Airdnd_Back | ||
artifactId=back |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Generated by Maven | ||
#Sat Aug 15 17:55:21 KST 2020 | ||
version=1.0.0-BUILD-SNAPSHOT | ||
groupId=com.airdnd | ||
artifactId=back |