码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot参考示例

时间:2018-06-25 10:57:21      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:ping   start   app   问题   osi   解决   string   exce   org   

库配置

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
   <version>1.5.13.RELEASE</version>
</dependency>

控制器

@Controller
@EnableAutoConfiguration
public class HelloController {
    @RequestMapping("/hello")
    @ResponseBody
    String home() {
        return "Hello ,spring boot!,I‘m here!,what‘s up!Hello!";
    }

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

}

注意

IE浏览器和eclipse自身带的浏览器测试时有可能会出现以下问题,换个浏览器就可以解决

技术分享图片

 

spring boot参考示例

标签:ping   start   app   问题   osi   解决   string   exce   org   

原文地址:https://www.cnblogs.com/suheng/p/9222534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!