1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * 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.identity.kafka",
- "org.maxkey.identity.rest",
- "org.maxkey.identity.scim.controller",
- "org.maxkey.persistence",
- "org.maxkey.synchronizer",
- "org.maxkey.web",
- "org.maxkey.web.access.contorller",
- "org.maxkey.web.api.endpoint",
- "org.maxkey.web.apps.contorller",
- "org.maxkey.web.contorller",
- "org.maxkey.web.endpoint",
- "org.maxkey.web.interceptor",
- "org.maxkey.web.permissions.contorller",
- "org.maxkey.web.tag"
- })
- @MapperScan("org.maxkey.persistence.mapper,")
- @SpringBootApplication
- @EnableDiscoveryClient
- public class MaxKeyMgtApplication extends SpringBootServletInitializer {
- private static final Logger _logger = LoggerFactory.getLogger(MaxKeyMgtApplication.class);
- public static void main(String[] args) {
- _logger.info("Start MaxKeyMgtApplication ...");
- ConfigurableApplicationContext applicationContext =
- SpringApplication.run(MaxKeyMgtApplication.class, args);
- InitializeContext initWebContext = new InitializeContext(applicationContext);
-
- try {
- initWebContext.init(null);
- } catch (ServletException e) {
- _logger.error("Exception ",e);
- }
- _logger.info("MaxKeyMgt at {}" , new DateTime());
- _logger.info("MaxKeyMgt Server Port {}"
- ,applicationContext.getBean(ApplicationConfig.class).getPort());
- _logger.info("MaxKeyMgt started.");
-
- }
- protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
- return application.sources(MaxKeyMgtApplication.class);
- }
- }
|