Java: Spring

From RHS Wiki
Revision as of 12:27, 30 April 2022 by Rafahsolis (talk | contribs)
Jump to navigation Jump to search

Spring Initializr

Spring default port 8080

Code example

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>
....