Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 하루한마디영어
- 안드로이드 개발 2.0
- 안드로이드 개발 2.0 강좌
- 인기있는 블로그 만들기
- 아이폰 배경화면
- SKY 시리우스
- 안드로이드 2.0 개발
- 안드로이드2.0
- 아이폰 바탕화면
- 안드로이드폰
- MapView
- 안드로이드 개발
- 영어
- Form Stuff
- 하루 한마디 영어
- 안드로이드개발
- 스카이 안드로이드폰 시리우스 K양 동영상
- sky 시리우스폰
- 안드로이드2.0개발
- 안드로이드 개발 강좌
- objective-c
- 스카이 안드로이드폰 시리우스
- 안드로이드 배경화면
- 안드로이드
- android
- 구글안드로이드
- 구글 안드로이드
- 스마트폰 배경화면
- 구글 안드로이드 개발
- 안드로이드 바탕화면
Archives
- Today
- Total
moozi
11/27 web.xml 본문
<?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">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-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>/WEB-INF/spring/appServlet/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>
<filter>
<filter-name>encoding</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>encoding</filter-name>
<servlet-name>appServlet</servlet-name>
</filter-mapping>
</web-app>
'TIS_2020 > 빅데이터2020_1기' 카테고리의 다른 글
11/30 ex02 (0) | 2020.11.30 |
---|---|
11/27 ex02 (0) | 2020.11.27 |
11/26 root_context.html (0) | 2020.11.26 |
11/26 ex02 (0) | 2020.11.26 |
11/25 ex01 (0) | 2020.11.25 |
Comments