GITLAB

taov-erp / spring-boot-template

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • spring-boot-template
  • ..
  • template
  • Bootstrap.java
  • 59a3fc51   1.较为完整的第一版 Browse Code »
    wangbin
    2019-03-17 22:39:54 +0800  
Bootstrap.java 344 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.springboot.template;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * 启动类
 * @author wangbin
 *
 */

@SpringBootApplication
public class Bootstrap {

	public static void main(String[] args) {
		SpringApplication.run(Bootstrap.class, args);
	}

}