Skip to content

Instantly share code, notes, and snippets.

@nuboat
Created March 5, 2020 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nuboat/7640e4bc3f23140691c51d4e7c1e84b9 to your computer and use it in GitHub Desktop.
Save nuboat/7640e4bc3f23140691c51d4e7c1e84b9 to your computer and use it in GitHub Desktop.
sub
package link.colon;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
@ServletComponentScan
@SpringBootApplication
public class Application {
public static void main(final String[] args) {
SpringApplication.run(Application.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment