Example & Tutorial understanding programming in easy ways.

How to create an executable jar using spring boot?

Add this below plugin to pom.xml

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

Read More →