Git Product home page Git Product logo

Comments (5)

dsyer avatar dsyer commented on March 29, 2024

It is expected that the SecurityAutoConfiguration would provide some defaults that you might otherwise have to provide in your own configuration. You can always disable the SecurityAutoConfiguration (by excluding it in @EnableAutoConfiguration), but I'd rather hear the details and try and see how to change things if necessary. You might need to describe your use case in a bit more detail to see if we need to explicitly support it or not.

from spring-boot.

zyro23 avatar zyro23 commented on March 29, 2024

essentially, i followed the securing-web guide and got a security config like this (groovy):

@Configuration
@EnableWebSecurity
class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
            .antMatchers("/login").permitAll()
            .antMatchers("/dummy").permitAll()
            .antMatchers("/secured").hasRole("USER")
            .anyRequest().authenticated()

        http.formLogin()
            .defaultSuccessUrl("/secured")
            .loginPage("/login")

        http.logout().permitAll()
    }

}

now if i add the dependency for spring-boot-starter-actuator in my gradle build, the app is asking for basic auth under any url...

thanks, zyro

from spring-boot.

dsyer avatar dsyer commented on March 29, 2024

Right, that's because your configurator callback is unordered, while the SecurityAutoConfiguration contains one that has @Order(Ordered.LOWEST_PRECEDENCE - 5). I suggest maybe you add @Order(Ordered.LOWEST_PRECEDENCE - 10) to yours.

from spring-boot.

zyro23 avatar zyro23 commented on March 29, 2024

oh well... i spotted the option for ordering but thought "last wins" with the highest precedence being last :/

i will give @Order(Ordered.LOWEST_PRECEDENCE - 10) a spin in a few hours and comment here if i succeeded - then this could be closed of course.

thanks for the quick help!

from spring-boot.

zyro23 avatar zyro23 commented on March 29, 2024

works. thanks again. closed.

from spring-boot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.