Skip to content

Instantly share code, notes, and snippets.

@springcome
Last active December 25, 2015 17:59
Show Gist options
  • Save springcome/7017530 to your computer and use it in GitHub Desktop.
Save springcome/7017530 to your computer and use it in GitHub Desktop.
Intercept - SessionInterceptor, spring 3.0, xml
<!-- 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