Java: Spring
Revision as of 12:27, 30 April 2022 by Rafahsolis (talk | contribs)
Spring default port 8080
application.properties
logging.level.org.springframework=DEBUG
pom.xml (Dependencies)
....
<dependencies>
....
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
....
</dependencies>
....