Skip to content

Instantly share code, notes, and snippets.

@HugoJBello
Created March 21, 2017 23:54
Show Gist options
  • Save HugoJBello/2730c542fc0fa055806e82cc6f424c40 to your computer and use it in GitHub Desktop.
Save HugoJBello/2730c542fc0fa055806e82cc6f424c40 to your computer and use it in GitHub Desktop.
spring boot application file
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MvcFormsExampleApplication {
public static void main(String[] args) {
SpringApplication.run(MvcFormsExampleApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment