Spring boot security генерирует ошибку со статусом 999 «Нет доступных сообщений» - PullRequest
1 голос
/ 01 октября 2019

Я пишу веб-приложение по аренде автомобилей, используя Spring-boot, Spring-security, Hibernate, MySQL, JSP, JSTL, AspectJ в Intellij. Я использую аутентификацию 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/**");
    }


}

мой ресурс и дерево веб-приложений:

enter image description here

...