How to disable spring-security login screen?

前端 未结 7 2746
慢半拍i
慢半拍i 2020-12-14 00:23

I\'m using spring-boot-starter-security dependency, to make use of several classes that come with spring-security. But as I want to integrate it in

7条回答
  •  清歌不尽
    2020-12-14 00:57

    On the main spring-boot application class (the class which has @SpringBootApplication annotation)

    @SpringBootApplication(exclude={SecurityAutoConfiguration.class})
    

提交回复
热议问题