摘要:
切面配置@Component @Aspect public class HelloAspect { @Pointcut("execution(* com.educationtek.daoxue.controller.*.*(..))") public void pointCut() { } @Before("pointCut()") public vo... 阅读全文
摘要:
拦截器配置 @Configurationpublic class SpringWebConfig extends WebMvcConfigurerAdapter { @Bean AuthInterceptor interfaceAuthInterceptor() { return new AuthInterceptor(); } @Overri... 阅读全文
摘要:
当 Web 应用集成 Spring 容器后,代表 Spring 容器的WebApplicationContext对象将以 WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE 为键存放在ServletContext的属性列表中。您当 阅读全文