-
1.IDEA启动Spring Boot 2.命令行启动 切换到工程目录下 输入 mvn spring-boot:run 3.先使用命令行编译mvn install 然后进入target目录下 java -jar XXX.jar查看全部
-
getMapping 查询 PostMapping 添加 DeleteMapping 删除 PutMapping 修改查看全部
-
PostMapping 保存 PutMapping 更新 DeleteMapping 删除查看全部
-
hibernate: ddl-auto: update/create/create-drop/none/validate validate 验证属性和表结构是否一致,不一致将会报错查看全部
-
@GeneratedValue 自增(MySQL)查看全部
-
JPA(Java Persistence API)定义了一系列对象持久化的标准,目前实现这一规范的产品有Hibernate、TopLink等查看全部
-
@RequestParam(value="id",required=false,defaultValue="0") 传统的 URL ,其中使用问号(?)查看全部
-
注意: @RequestVariable 和 @RequestParam的区别查看全部
-
Controller 的使用 (1)PathVariable 获取url中的数据 (2)RequestParam 获取请求参数的值 (3)GetMapping 组合注解查看全部
-
RequestMethod常用的请求方式是GET、POST查看全部
-
@RequestMapping(value = {"/hello","/hi"}, method=RequestMethod.GET); // 如果可以访问 2 个,可以写作一个集合查看全部
-
Controller的使用 (1)@Controller 处理http请求 (2)RestController Spring 4之后新加的注解,原来返回json需要@ResponseBody配合@Controller (3)RequestMapping 配置url映射查看全部
-
属性配置 (1)@Value (2)@Component (3)@ConfigurationProperties查看全部
-
(1)第一个SpringBoot程序 (2)自定义属性配置 (3)Controller的使用 (4)spring-data-jpa查看全部
-
SpringBoot--SpringCloud--微服务查看全部
举报
0/150
提交
取消