* How to disable swagger in production example. * Add new module in main pom. * fix pom formatting * Replace tabs with spaces. * Move to article-specific package. Co-authored-by: Cristian Stancalau <cstancalau@consultant.ffn.com>
13 lines
334 B
Java
13 lines
334 B
Java
package com.baeldung;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class SpringBootRest2Application {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SpringBootRest2Application.class, args);
|
|
}
|
|
}
|