JAVA-86: spring-boot-main-class
This commit is contained in:
parent
c79e927ddd
commit
7b7f988f88
|
@ -8,4 +8,4 @@ This module contains articles about Spring Boot customization
|
|||
- [Using Custom Banners in Spring Boot](https://www.baeldung.com/spring-boot-custom-banners)
|
||||
- [Create a Custom FailureAnalyzer with Spring Boot](https://www.baeldung.com/spring-boot-failure-analyzer)
|
||||
- [Spring Boot: Customize Whitelabel Error Page](https://www.baeldung.com/spring-boot-custom-error-page)
|
||||
|
||||
- [Spring Boot: Configuring a Main Class](https://www.baeldung.com/spring-boot-main-class)
|
||||
|
|
|
@ -37,4 +37,9 @@
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<!-- The main class to start by executing "java -jar" -->
|
||||
<start-class>com.baeldung.changeport.CustomApplication</start-class>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue