访问h2database建立的数据库

建立一个新的maven
在pom中加入 org.springframework.boot spring-boot-starter-parent 1.4.3.RELEASE
加入sprin-boot-starter-web依赖
创建dependencyManagement org.springframework.cloud spring-cloud-dependencies Camden.SR4 pom import
后面加入加入spring-boot-manev-plugin依赖 创建src/main/resource文件夹并创建application.yml配置端口 创建和需要访问的数据库实体类一样的实体类,用来接收数据。 创建main入口,内部代码如下: @Bean
public RestTemplate show() {
return new RestTemplate();
}
public static void main(String[] args) {
SpringApplication.run(UserControllerPrower.class, args);
}创建controller端口,提供访问url
@RestController
public class UserController {
@Autowired
private RestTemplate rest;
@RequestMapping("/user/{id}")
public User getuse(@PathVariable Long id){
return this.rest.getForObject(“http://localhost:8080/”+id, User.class);
}`

你可能感兴趣的:(访问h2database建立的数据库)