Add main application class and test configuration for Spring Boot app
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package fr.bureauservice.app;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class PortailApplication {
|
||||
|
||||
static void main(String[] args) {
|
||||
SpringApplication.run(PortailApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
1
server/app/src/main/resources/application.properties
Normal file
1
server/app/src/main/resources/application.properties
Normal file
@@ -0,0 +1 @@
|
||||
spring.application.name=app
|
||||
@@ -0,0 +1,13 @@
|
||||
package fr.bureauservice.app;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class PortailApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user