Class ServerApplication
- java.lang.Object
-
- app.coronawarn.server.services.submission.ServerApplication
-
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.DisposableBean
,org.springframework.context.EnvironmentAware
@SpringBootApplication(exclude=org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration.class) @EnableJdbcRepositories(basePackages="app.coronawarn.server.common.persistence") @EntityScan(basePackages="app.coronawarn.server.common.persistence") @ComponentScan({"app.coronawarn.server.common.persistence","app.coronawarn.server.services.submission"}) @EnableConfigurationProperties @EnableFeignClients public class ServerApplication extends Object implements org.springframework.context.EnvironmentAware, org.springframework.beans.factory.DisposableBean
-
-
Constructor Summary
Constructors Constructor Description ServerApplication()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
destroy()
Manual shutdown hook needed to avoid Log4j shutdown issues (see cwa-server/#589).static void
main(String[] args)
void
setEnvironment(org.springframework.core.env.Environment environment)
-
-
-
Method Detail
-
main
public static void main(String[] args)
-
destroy
public void destroy()
Manual shutdown hook needed to avoid Log4j shutdown issues (see cwa-server/#589).- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
-
setEnvironment
public void setEnvironment(org.springframework.core.env.Environment environment)
- Specified by:
setEnvironment
in interfaceorg.springframework.context.EnvironmentAware
-
-