这可能是个愚蠢的问题。但我不知道会发生什么。以下URL是我已配置为在我的客户应用程序中重定向的示例。
<a href="http://cpolo.in/admin/about-us" class="btn_a medium_btn bottom_space">
我只是使用spring mvc项目。很少当用户点击此URL时,它会直接转到以下URL。
http://cpolo.in/admin/login
我的安全配置是
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/admin/**")
.access("hasAnyRole('SUPER ADMIN','ADMIN','STAFF')").and()
.formLogin().loginPage("/login").failureUrl("/login?error")
.defaultSuccessUrl("/admin/orderdetails")
.usernameParameter("user").passwordParameter("pass").and()
.logout().logoutSuccessUrl("/login?logout").and().csrf().and()
.exceptionHandling().accessDeniedPage("/403").and()
.sessionManagement().invalidSessionUrl("/login");
http.authorizeRequests().antMatchers("/api/**").permitAll().and()
.csrf().disable();
}
我一直在使用Spring MVC,Java 8和Apache 8服务器。可能是我的错误。