First draft of a template for spring boot applications in java
This commit is contained in:
14
src/main/java/xyz/plobos/template/TemplateApplication.java
Normal file
14
src/main/java/xyz/plobos/template/TemplateApplication.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package xyz.plobos.template;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class TemplateApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(TemplateApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
2
src/main/resources/application.properties
Normal file
2
src/main/resources/application.properties
Normal file
@@ -0,0 +1,2 @@
|
||||
spring.application.name=template
|
||||
|
||||
Reference in New Issue
Block a user