上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 66 下一页
摘要: 1 /** 2 * 添加用户,使用@RequestBody将请求体映射到Action方法参数中 3 * 使用@Valid注解验证请求参数的合法性 4 * 使用BindingResult处理校验结果 5 * @param user 6 * @param result 7 * @return 8 */ 9... 阅读全文
posted @ 2019-03-26 19:58 SpringCore 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 建议使用时间戳来避免日期格式带来的前后端问题,使用时间戳可以避免前后端、平台等问题。 阅读全文
posted @ 2019-03-26 18:49 SpringCore 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 1 @PostMapping("/user") 2 public User create(@RequestBody User user){ 3 System.out.println(user.toString()); 4 user.setId(5l); 5 return user; 6 } 1 @Test 2 ... 阅读全文
posted @ 2019-03-26 14:44 SpringCore 阅读(1029) 评论(0) 推荐(0) 编辑
摘要: 我也是刚看到原来还可以这么玩,但是我还是习惯使用Dto,我总感觉这样做的话实体类耦合程度有点高。还是记录以下,万一今后用到了呢 ⒈在实体类中使用接口来声明该实体类的多个视图。 ⒉在实体类的属性get方法上指定该属性在那个视图中呈现。 ⒊在控制器的Action方法上使用@JsonView注解声明该Ac 阅读全文
posted @ 2019-03-26 13:09 SpringCore 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 1 @GetMapping("/user/{id:\\d+}") //使用正则指定Id为数字 2 public User getInfo(@PathVariable String id){ 3 ... 4 } 阅读全文
posted @ 2019-03-25 21:20 SpringCore 阅读(3084) 评论(0) 推荐(0) 编辑
摘要: 1 package cn.coreqi.security.controller; 2 3 import org.junit.Before; 4 import org.junit.Test; 5 import org.junit.runner.RunWith; 6 import org.springframework.beans.factory.annotation.Autowire... 阅读全文
posted @ 2019-03-25 20:17 SpringCore 阅读(637) 评论(0) 推荐(0) 编辑
摘要: ⒈实体Bean ⒉仓库 ⒊服务层 ⒋控制层(待补充 阅读全文
posted @ 2019-03-22 20:42 SpringCore 阅读(578) 评论(0) 推荐(0) 编辑
摘要: ⒈定义片段 1.使用th:fragment 2.不使用th:fragment ⒉引用片段 1.引用使用th:fragment的片段 2.引用不使用th:fragment的片段 ⒊引用模板使用的th:insert、th:replace、th:include三者之间的区别 th:insert 将简单地插 阅读全文
posted @ 2019-03-14 20:34 SpringCore 阅读(581) 评论(0) 推荐(0) 编辑
摘要: ⒈理解Thymeleaf Java模板引擎。能够处理HTML、XML、JavaScript、CSS甚至纯文本。类似JSP、Freemarker 自然模板。原型即页面 语法优雅易懂,OGNL、SpringEL 遵从Web标准。支持HTML5 ⒉如何识别Thymeleaf标准方言 1.需要页面引入命名空 阅读全文
posted @ 2019-03-14 13:00 SpringCore 阅读(358) 评论(0) 推荐(0) 编辑
摘要: ⒈控制器Action示例 阅读全文
posted @ 2019-03-13 22:34 SpringCore 阅读(712) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 66 下一页