2016年4月17日

(12)Spring Boot改变JDK编译版本【从零开始学Spring Boot】

摘要: Spring Boot在编译的时候,是有默认JDK版本的,如果我们期望使用我们要的JDK版本的话,那么要怎么配置呢?这个只需要修改pom.xml文件的 -- 加入一个plugin即可。 maven-compiler-plugin 1.8 1.8 添加了pl... 阅读全文

posted @ 2016-04-17 18:35 疯子123 阅读(567) 评论(0) 推荐(0) 编辑

(11)Spring Boot配置ContextPath【从零开始学Spring Boot】

摘要: Spring boot默认是/ ,这样直接通过http://ip:port/就可以访问到index页面,如果要修改为http://ip:port/path/ 访问的话,那么需要在Application.properties文件中加入server.context-path = /你的path,... 阅读全文

posted @ 2016-04-17 18:34 疯子123 阅读(295) 评论(0) 推荐(0) 编辑

(10)Spring Boot修改端口号【从零开始学Spring Boot】

摘要: Spring boot 默认端口是8080,如果想要进行更改的话,只需要修改applicatoin.properties文件,在配置文件中加入:server.port=9090 常用配置:####################################################... 阅读全文

posted @ 2016-04-17 18:33 疯子123 阅读(612) 评论(0) 推荐(0) 编辑

(9)使用JdbcTemplate【从零开始学Spring Boot】

摘要: 整体步骤:(1) 在pom.xml加入jdbcTemplate的依赖;(2) 编写DemoDao类,声明为:@Repository,引入JdbcTemplate(3) 编写DemoService类,引入DemoDao进行使用(4) 编写Demo2Controller进行简单测... 阅读全文

posted @ 2016-04-17 18:27 疯子123 阅读(159) 评论(0) 推荐(0) 编辑

导航