学习一代码的基础上进行修改 SpringApplication.run 代码保留
Maven配置
UTF-8 1.8 org.springframework.boot spring-boot-starter-parent 1.4.4.RELEASE org.springframework.boot spring-boot-starter-web
java 代码
@RestController@EnableAutoConfigurationpublic class FirstControlle{ @RequestMapping(value="/")//是springmvc中的注解 String home(){ return "helloworld"; } }
启动 main 方法 自动扫描
浏览器 localhost:8080/ 启动访问