Fix Custom DSL sample in docs
This commit is contained in:
parent
f614a8230c
commit
90b48554e4
|
@ -232,14 +232,14 @@ public class MyCustomDsl extends AbstractHttpConfigurer<MyCustomDsl, HttpSecurit
|
||||||
private boolean flag;
|
private boolean flag;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(H http) throws Exception {
|
public void init(HttpSecurity http) throws Exception {
|
||||||
// any method that adds another configurer
|
// any method that adds another configurer
|
||||||
// must be done in the init method
|
// must be done in the init method
|
||||||
http.csrf().disable();
|
http.csrf().disable();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void configure(H http) throws Exception {
|
public void configure(HttpSecurity http) throws Exception {
|
||||||
ApplicationContext context = http.getSharedObject(ApplicationContext.class);
|
ApplicationContext context = http.getSharedObject(ApplicationContext.class);
|
||||||
|
|
||||||
// here we lookup from the ApplicationContext. You can also just create a new instance.
|
// here we lookup from the ApplicationContext. You can also just create a new instance.
|
||||||
|
|
Loading…
Reference in New Issue