Как предоставить доступ к моим ресурсам в SpringSecurity - PullRequest
0 голосов
/ 28 мая 2018

У меня есть один проект, над которым я работаю.У меня проблема с моими ресурсами.Я использую Spring Security и не могу предоставить доступ к ресурсам, которые я использую для создания своих html-страниц.Может ли кто-нибудь помочь мне?Вот мои ресурсы: здесь

и вот мой SpringSecurityConfig

    <!DOCTYPE html>
<html lang="en" xmlns:th="http:thymeleaf.org">

<head>
    <title>Events & People</title>
    <meta charset="UTF-8">
    <link rel="stylesheet" type="text/css" href="./styling.css">

</head>

package com.example.app.Configuration;

import com.example.app.Service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
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.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;

@Configuration
@EnableWebSecurity
public class SpringSecurityConfig extends WebSecurityConfigurerAdapter{

@Autowired
private UserService userService;

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.userDetailsService(this.userService).passwordEncoder(getBCryptPasswordEncoder());

}

@Override
protected void configure(HttpSecurity http) throws Exception{
    http
            .authorizeRequests()
            .antMatchers("/","/register", "/login").permitAll()
            .antMatchers("/css/**").permitAll()
            .antMatchers("/user/**").access("hasRole('USER') OR hasRole('ADMIN')")
            .antMatchers("/admin/**").hasRole("ADMIN")
            .anyRequest().authenticated()
            .and()
            .formLogin().loginPage("/login").permitAll()
            .usernameParameter("username")
            .passwordParameter("password")
            .and()
                .rememberMe()
                .rememberMeCookieName("TheBoardFinders")
                .rememberMeParameter("remember")
                .key("1random%2316secretcryptoTUES")
                .tokenValiditySeconds(2629743)
            .and()
                .logout().logoutSuccessUrl("/login?logout").permitAll()
            .and()
                .exceptionHandling().accessDeniedPage("/unauthorized")
            .and()
                .csrf().disable();
}

@Bean
public BCryptPasswordEncoder getBCryptPasswordEncoder()
{
    return new BCryptPasswordEncoder();
}

}

Пожалуйста, не отмечайте его как дубликат, потому что я искал здесь, и я нашел несколько вопросов, таких какмои, но они не могли мне помочь.

1 Ответ

0 голосов
/ 28 мая 2018

Добавьте этот метод к вашему @org.springframework.context.annotation.Configuration классу, реализующему org.springframework.web.servlet.config.annotation.WebMvcConfigurer

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry)
{
    registry
            .addResourceHandler("/resources/**")
            .addResourceLocations("classpath:/static/");
}

и в вашем SpringSecurityConfig,
измените .antMatchers("/css/**").permitAll() на .antMatchers("/resources/**").permitAll()
или измените .anyRequest().authenticated() до .anyRequest().permit().

Вы можете получить доступ к своему (например) файлу CSS по этому URL:

http://localhost:8080/resources/css/mycssfile.css
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...