struts2, urlrewrite 설정 java
2010.07.15 00:37 Edit
urlrewrite를 설정하고 난 이후 struts2로 redirect, forward를 하기 위해서는 struts의 filter 설정에 redirect 또는 forward에 대한 허용 설정이 필요하다.
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>
이 글과 관련된 글
- [2011/10/03] Hypothesis in quantitative research (1468)
- [2011/07/26] 스프링에서 한글 깨지는 문제 (2135)
- [2011/05/30] SWT/Jface 설정하기 (798)
- [2011/04/13] messaging 처리(jms) (2573)
- [2011/02/09] jquery ui menu() (1909)
- Tag :
- study , java , struts2 & urlrewrite 설정
