/* * Copyright (C) 2019-present 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 * * http://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 demo.sbp.app; import demo.sbp.shared.IdsConverter; import org.laxture.spring.util.ApplicationContextProvider; import org.modelmapper.ModelMapper; import org.modelmapper.convention.NameTokenizers; import org.modelmapper.jooq.RecordValueReader; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration; import org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.DependsOn; import org.springframework.context.annotation.Profile; /** * @author <a href="https://github.com/hank-cp">Hank CP</a> */ @SpringBootApplication(scanBasePackages = "demo.sbp", exclude = { SecurityAutoConfiguration.class, SecurityFilterAutoConfiguration.class, }) @Profile("no_security") public class DemoApp { public static void main(String[] args) { SpringApplicationBuilder builder = new SpringApplicationBuilder(); builder.profiles("no_security"); builder.sources(DemoApp.class); builder.build().run(); } @Bean public ApplicationContextAware multiApplicationContextProviderRegister() { return ApplicationContextProvider::registerApplicationContext; } @Bean @ConditionalOnMissingBean @DependsOn("multiApplicationContextProviderRegister") public ModelMapper modelMapper(ApplicationContext applicationContext) { ModelMapper mapper = new ModelMapper(); mapper.getConfiguration().setSourceNameTokenizer(NameTokenizers.CAMEL_CASE) .addValueReader(new RecordValueReader()); mapper.addConverter(new IdsConverter()); return mapper; } }