我正在使用Intellij中的Spring-boot,Spring-security,Hibernate,MySQL,JSP,JSTL,AspectJ编写租车网络应用程序。我使用JDBC身份验证登录用户。问题是:如果我是第一次登录,则出现状态999
的错误,键入None
,并显示消息:Message not available
,第二次登录正常通过。
我读到它可能是Spring Security在WebSecurity配置中找不到声明的文件夹。我尝试了许多蚂蚁匹配器,最后只剩下/css/**
和/js/**
,因为在我的页面上都可以正确地读取它们,但是结果是相同的-错误状态999。
是问题的根源吗?谁能指出我做错了什么?
SecurityConfiguration.class
package com.doszke.CarRent.web;
import com.doszke.CarRent.reflect.annotations.AccessLevel;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
import javax.sql.DataSource;
@Configuration
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Autowired
private DataSource dataSource;
@Autowired
private BCryptPasswordEncoder bCryptPasswordEncoder;
@Value("${carrent.queries.users-query}")
private String usersQuery;
@Value("${carrent.queries.roles-query}")
private String rolesQuery;
@Override
protected void configure(AuthenticationManagerBuilder auth)
throws Exception {
auth.
jdbcAuthentication()
.usersByUsernameQuery(usersQuery)
.authoritiesByUsernameQuery(rolesQuery)
.dataSource(dataSource)
.passwordEncoder(bCryptPasswordEncoder);
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/").permitAll()
.antMatchers("/resources/**").permitAll()
.antMatchers("/login").permitAll()
.antMatchers("/register").permitAll()
.antMatchers("/registerSuccess").permitAll()
.antMatchers("/home/**").hasAuthority(AccessLevel.USER).anyRequest().authenticated()
.antMatchers("/admin/**").hasAuthority(AccessLevel.ADMIN).anyRequest()
.authenticated()
.and()
.csrf()
.disable()
.formLogin()
.loginPage("/login")
.failureUrl("/login?error=true")
.defaultSuccessUrl("/home")
.usernameParameter("login")
.passwordParameter("password")
.and()
.logout()
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
.logoutSuccessUrl("/")
.and()
.exceptionHandling()
.accessDeniedPage("/access-denied");
}
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/css/**", "/js/**");//, "/static/**", "/css/**", "/js/**", "/images/**");
}
}
我的资源和Web应用程序树: