Notice
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
- mybatis
- 기본
- 생성자
- JSP
- oracle
- Eclips
- 에러페이지
- 안드로이드
- Android
- struts2
- 이클립스
- 배열
- 국제화
- 전화걸기
- HTML
- layout
- Spring
- 클래스
- 메소드
- Java
- Menu
- Graphic
- 오버로딩
- 메서드
- OGNL
- 예외처리
- AWT
- 어노테이션
- JavaScript
- paint
Archives
- Today
- Total
note
LocaleChangeInterceptor를 이용한 Locale 변경(국제화) 본문
이전 게시물과 연관 있습니다
[JSP/Spring] - LocaleResolver를 이용한 Locale 변경(국제화)
[JSP/Spring] - Spring 커스텀 태그 / 로그인 유효성 체크
dispatcherInternal-servlet.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- 커스텀 태그 이용 --> <bean class="madvirus.spring.chap07.controller.LoginController"> <property name="authenticator"> <bean class="madvirus.spring.chap07.controller.MockAuthenticator"/> </property> </bean> <!-- 국제화 2 --> <bean id="localeChangeInterceptor" class="madvirus.spring.chap07.controller.LocaleChangeController" p:paramName="language" /> <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> <property name="interceptors"> <list> <ref bean="localeChangeInterceptor"/> </list> </property> </bean> <!-- View 글로벌 설정 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/viewjsp/" /> <property name="suffix" value=".jsp"/> </bean> <!-- 리소스 번들 지정 --> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> <list> <value>messages.validation</value> <value>messages.label</value> </list> </property> </bean> </beans>
이전 방식보다 간편한 방법입니다
'JSP > Spring' 카테고리의 다른 글
Spring Tiles 레이아웃 (0) | 2012.03.07 |
---|---|
AbstractPdfView 클래스를 이용한 PDF 다운로드 구현(PDF 만들기) (0) | 2012.03.07 |
LocaleResolver를 이용한 Locale 변경(국제화) (0) | 2012.03.07 |
Spring 커스텀 태그 / 로그인 유효성 체크 (0) | 2012.03.06 |
Spring 예외처리 (0) | 2012.03.06 |