Commit 5cabd59a authored by aray's avatar aray

initial commit by admin

parent a85e0177
package com.altimetrik; package com.altimetrik;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication @SpringBootApplication
@Slf4j
public class Application { public class Application {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(Application.class, args); SpringApplication.run(Application.class, args);
log.info("PlaygroundCandidateDemo app has been started successfully ...");
} }
} }
...@@ -10,7 +10,7 @@ spring: ...@@ -10,7 +10,7 @@ spring:
# HTTP Server # HTTP Server
server: server:
port: 1099 # HTTP (Tomcat) port port: 1099 # HTTP (Tomcat) port
servlet.contextPath: /v1 servlet.contextPath: /
undertow: undertow:
accesslog: accesslog:
enabled: true enabled: true
......
...@@ -6,8 +6,5 @@ import org.springframework.boot.test.context.SpringBootTest; ...@@ -6,8 +6,5 @@ import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest @SpringBootTest
class ApplicationTests { class ApplicationTests {
@Test
void contextLoads() {
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment