摘要: 切面配置@Component @Aspect public class HelloAspect { @Pointcut("execution(* com.educationtek.daoxue.controller.*.*(..))") public void pointCut() { } @Before("pointCut()") public vo... 阅读全文
posted @ 2018-08-14 14:18 looyee 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 拦截器配置 @Configurationpublic class SpringWebConfig extends WebMvcConfigurerAdapter { @Bean AuthInterceptor interfaceAuthInterceptor() { return new AuthInterceptor(); } @Overri... 阅读全文
posted @ 2018-08-14 14:04 looyee 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 当 Web 应用集成 Spring 容器后,代表 Spring 容器的WebApplicationContext对象将以 WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE 为键存放在ServletContext的属性列表中。您当 阅读全文
posted @ 2018-08-14 13:46 looyee 阅读(275) 评论(0) 推荐(0) 编辑