69 lines
2.4 KiB
Java
69 lines
2.4 KiB
Java
/*
|
|
* Copyright 2023 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package example;
|
|
|
|
import org.springframework.beans.factory.config.BeanDefinition;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Role;
|
|
import org.springframework.security.authorization.method.AuthorizationAdvisorProxyFactory;
|
|
import org.springframework.security.authorization.method.AuthorizationAdvisorProxyFactory.TargetVisitor;
|
|
import org.springframework.security.authorization.method.PrePostTemplateDefaults;
|
|
import org.springframework.security.config.Customizer;
|
|
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity;
|
|
import org.springframework.security.core.userdetails.User;
|
|
import org.springframework.security.core.userdetails.UserDetailsService;
|
|
import org.springframework.security.provisioning.InMemoryUserDetailsManager;
|
|
|
|
@SpringBootApplication
|
|
@EnableMethodSecurity
|
|
public class DataApplication {
|
|
|
|
@Bean
|
|
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
|
|
static Customizer<AuthorizationAdvisorProxyFactory> skipValueTypes() {
|
|
return (f) -> f.setTargetVisitor(TargetVisitor.defaultsSkipValueTypes());
|
|
}
|
|
|
|
@Bean
|
|
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
|
|
static PrePostTemplateDefaults templateDefaults() {
|
|
return new PrePostTemplateDefaults();
|
|
}
|
|
|
|
@Bean
|
|
public UserDetailsService userDetailsService() {
|
|
return new InMemoryUserDetailsManager(
|
|
User.withDefaultPasswordEncoder()
|
|
.username("rob")
|
|
.password("password")
|
|
.authorities("message:read", "user:read")
|
|
.build(),
|
|
User.withDefaultPasswordEncoder()
|
|
.username("luke")
|
|
.password("password")
|
|
.authorities("message:read")
|
|
.build());
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(DataApplication.class, args);
|
|
}
|
|
|
|
}
|