Last active
December 25, 2015 17:59
-
-
Save springcome/7017530 to your computer and use it in GitHub Desktop.
Intercept - SessionInterceptor, spring 3.0, xml
This file contains hidden or 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
<!-- interceptor --> | |
<mvc:interceptors> | |
<mvc:interceptor> | |
<mvc:mapping path="/*****/*Write*" /> | |
<bean class="*****.SessionInterceptor" /> | |
</mvc:interceptor> | |
</mvc:interceptors> | |
<!-- multi mapping --> | |
<mvc:interceptors> | |
<mvc:interceptor> | |
<mvc:mapping path="/*****/*Write*" /> | |
<mvc:mapping path="/*/*View*" /> | |
<bean class="*****.SessionInterceptor" /> | |
</mvc:interceptor> | |
</mvc:interceptors> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment