boot2.0专题

Spring boot2.0 入门(五)-热部署

为了避免在更改代码的时候还要手动重启工程,可以使用热部署。会在Crtl+s保存代码的时候自动重启工程。 原理:实现监控classpath下文件的变化,如果发生变化则自动重启 使用热部署只需要添加以下依赖即可 <!--devtools--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-

Spring boot2.0 入门(四)-使用RestTemplate 通信多个Spring boot工程

有时候项目中要建立多个微服务,或者把一个大的项目拆分成多个微服务进行解耦,为了方便完成各个微服务之间相互调用, Spring给予了模板类RestTemplate,下面介绍一下RestTemplate的几种用法: 1.使用RestTemplate进行Get请求,请求参数较少 //通过用户ID获取用户信息public User RestTemplateGet(Long id){RestTempl

Spring boot2.0 入门(二)-Spring boot结合mybatis

一.整个工程图 二.pom.xml <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apac

Spring boot2.0 入门(一)-使用eclipse 创建Spring boot项目

1.下载maven并解压 http://maven.apache.org/ 2.配置eclipse中要使用maven,将maven解压好的路径配置进来 Window->Preferences->Maven->Installations->add 3.配置要使用的maven的setting配置文件(在maven的conf目录下),local Repository本地仓库没有的话就默认就行 如果需