美文网首页
Spring Boot学习笔记

Spring Boot学习笔记

作者: 李亚楠0219 | 来源:发表于2018-03-11 18:45 被阅读14次

    生成项目

    可以通过Spring官方网站进行生成。
    https://start.spring.io

    Controller注解

    给方法添加注解

        @RequestMapping(value={"/index","/show"},method= RequestMethod.GET)
        @ResponseBody
    

    如果一个Controller中有很多个方法,每个方法都需要使用@ResponseBody注解,此时可以将类注解@Controller换成@RestController。一旦换成@RestController,则方法不再需要注解@ResponseBody。
    同时RequestMapping可以换成GetMapping和PostMapping

    Spring Boot配置

    Spring Boot的内置容器Tomcat/jetty/undertow
    修改端口号:application.properties中添加server.port=8081
    修改项目路径: server.servlet.context-path=xxxxxxx(2.0版本以后)

    修改Spring Boot启动时的横幅

    添加banner.txt
    或者使用xxx.txt
    并进行如下配置:spring.banner.location=classpath:xxx.txt

    如果数据库中的某个字段使用了mysql中的关键字,那么在mybatis中select时,应当在此字段添加

    相关文章

      网友评论

          本文标题:Spring Boot学习笔记

          本文链接:https://www.haomeiwen.com/subject/amcmfftx.html