Add java docs to SpringApplication.main

This commit is contained in:
Dave Syer 2013-05-02 07:15:55 +01:00
parent 68960cca4e
commit a968b140cc

View File

@ -611,6 +611,15 @@ public class SpringApplication {
}
/**
* A basic main that can be used to launch an autoconfigured application. Useful for
* demos and testing, perhaps less for production use (where the run methods are more
* appropriate).
*
* @param args command line arguments
* @see #run(Object[], String[])
* @see #run(Object, String...)
*/
public static void main(String[] args) {
run(new Class<?>[] { AutoMain.class }, args);
}