cleanup fix
parent
5137fffb56
commit
6e287331f9
|
|
@ -17,7 +17,6 @@ public class ApiApplication extends SpringBootServletInitializer {
|
||||||
// private String greetingMessage;
|
// private String greetingMessage;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
//System.out.println(greetingMessage);
|
|
||||||
SpringApplication.run(ApiApplication.class, args);
|
SpringApplication.run(ApiApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -41,16 +40,4 @@ public class ApiApplication extends SpringBootServletInitializer {
|
||||||
public MapSessionRepository sessionRepository() {
|
public MapSessionRepository sessionRepository() {
|
||||||
return new MapSessionRepository(new ConcurrentHashMap<>());
|
return new MapSessionRepository(new ConcurrentHashMap<>());
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Bean
|
|
||||||
// public String greetingMessage() {
|
|
||||||
// return greetingMessage;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// @PostConstruct
|
|
||||||
// public void printEnvValues(){
|
|
||||||
// System.out.println("Print environment values");
|
|
||||||
// System.out.println("$$$$$$$"+greetingMessage);
|
|
||||||
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue