com.pw.ism.TestSecurityConfig.java Source code

Java tutorial

Introduction

Here is the source code for com.pw.ism.TestSecurityConfig.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.pw.ism;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;
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.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.test.context.web.WebAppConfiguration;

/**
 *
 * @author NRS
 */
@Configuration
@EnableWebSecurity
@WebAppConfiguration
public class TestSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().antMatchers(HttpMethod.POST, "/newmessage", "/addheartbeat").permitAll()
                .antMatchers("/", "/css/**", "/js/**", "/images/**").permitAll().anyRequest().authenticated().and()
                .csrf().ignoringAntMatchers("/newmessage", "/addheartbeat").and().formLogin().loginPage("/login")
                .permitAll().and().logout().permitAll();
    }

    @Autowired
    public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().withUser("user").password("password").roles("USER").and().withUser("admin")
                .password("admin123").roles("ADMIN");
    }

}