1) 我已经使用纯 java 配置配置了应用程序。除了 css/js/images 之外,一切似乎都正常工作。该应用程序可在 Github 上获取
https://github.com/rajendersaini/cabms/
只想指出配置
AppConfig - spring mvc config - 使用注册资源
registry.addResourceHandler("/resources/**")
.addResourceLocations("/WEB-INF/resources/").setCachePeriod(31556926);
并在 SecurityConfig -
http.authorizeRequests()
.antMatchers(LoginController.AUTHLOGIN,
ResourceConfig.RESOURCE_PATH_MATCHER).permitAll()
.anyRequest().authenticated().and().formLogin()
.loginPage(LoginController.AUTHLOGIN);
你能帮忙解决这个问题吗?