12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
- *
- * 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 org.maxkey;
- import javax.servlet.ServletException;
- import org.joda.time.DateTime;
- import org.maxkey.configuration.ApplicationConfig;
- import org.maxkey.web.InitializeContext;
- import org.mybatis.spring.annotation.MapperScan;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.builder.SpringApplicationBuilder;
- import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
- import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
- import org.springframework.context.ConfigurableApplicationContext;
- import org.springframework.context.annotation.ComponentScan;
- @ComponentScan(basePackages = {
- "org.maxkey.authn",
- "org.maxkey.configuration",
- "org.maxkey.entity",
- "org.maxkey.entity.apps",
- "org.maxkey.entity.userinfo",
- "org.maxkey.web.apis.identity.kafka",
- "org.maxkey.web.apis.identity.rest",
- "org.maxkey.web.apis.identity.scim",
- "org.maxkey.persistence",
- "org.maxkey.provision",
- "org.maxkey.web",
- "org.maxkey.web.api.endpoint",
- "org.maxkey.web.contorller",
- "org.maxkey.web.endpoint",
- "org.maxkey.web.interceptor",
- })
- @MapperScan("org.maxkey.persistence.mapper,")
- @SpringBootApplication
- @EnableDiscoveryClient
- public class MaxKeyOpenApiApplication extends SpringBootServletInitializer {
- private static final Logger _logger = LoggerFactory.getLogger(MaxKeyOpenApiApplication.class);
- public static void main(String[] args) {
- _logger.info("Start MaxKey OpenApi Application ...");
- ConfigurableApplicationContext applicationContext =
- SpringApplication.run(MaxKeyOpenApiApplication.class, args);
- InitializeContext initWebContext = new InitializeContext(applicationContext);
-
- try {
- initWebContext.init(null);
- } catch (ServletException e) {
- _logger.error("Exception ",e);
- }
- _logger.info("MaxKey OpenApi at {}" , new DateTime());
- _logger.info("MaxKey OpenApi Server Port {}"
- ,applicationContext.getBean(ApplicationConfig.class).getPort());
- _logger.info("MaxKey OpenApi started.");
-
- }
- protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
- return application.sources(MaxKeyOpenApiApplication.class);
- }
- }
|