project init

This commit is contained in:
sechmachine
2026-08-14 04:15:52 +07:00
parent 55fc1d2d87
commit 55a8ce675f
15 changed files with 808 additions and 20 deletions
@@ -0,0 +1,13 @@
package com.lab.labtimesheet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class LabtimesheetApplication {
public static void main(String[] args) {
SpringApplication.run(LabtimesheetApplication.class, args);
}
}
@@ -0,0 +1,13 @@
package com.lab.labtimesheet;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(LabtimesheetApplication.class);
}
}
+3
View File
@@ -0,0 +1,3 @@
spring:
application:
name: labtimesheet