SpringBootDemo1


  4.0.0

  casic.tz
  test1
  0.0.1-SNAPSHOT
  jar

  test1
  http://maven.apache.org

   
    UTF-8
  
	
	    org.springframework.boot 
	    spring-boot-starter-parent
	    1.5.12.RELEASE
	
	
	    
	        org.springframework.boot
	        spring-boot-starter-web
	    
	

package casic.tz.test1;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@EnableAutoConfiguration
@RestController
public class StartApplication {
	
	@RequestMapping("hello")
	public String hello(){
		return "Hello SpringBoot!";
	}
	public static void main(String[] args) {
		SpringApplication.run(StartApplication.class, args);
	}
}


你可能感兴趣的:(SpringBoot)