Skip to content

Commit

Permalink
webセキュリティコンフィグで要認証を無効化
Browse files Browse the repository at this point in the history
  • Loading branch information
yukihane committed Jul 12, 2019
1 parent 61357fe commit 15e7b26
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@
package com.github.yukihane.h2consolespringsecurityexample.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
public class MyWebSecConfig extends WebSecurityConfigurerAdapter {

@Override
protected void configure(final HttpSecurity http) throws Exception {
}
}

0 comments on commit 15e7b26

Please sign in to comment.