随笔分类 -  @

摘要: 阅读全文
posted @ 2019-07-14 06:11 ThisCall 阅读(242) 评论(0) 推荐(0) 编辑
摘要:校验规范 最基本的 常用验证注解 举例 阅读全文
posted @ 2019-07-13 18:21 ThisCall 阅读(1039) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-13 17:51 ThisCall 阅读(144) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/428013630.html hhttps://blog.csdn.net/tianmaxingkonger/article/details/84851206(copy 阅读全文
posted @ 2019-07-13 16:35 ThisCall 阅读(13858) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/magi1201/article/details/82226289(copy) 最近学习看一些代码,发现对于发送请求这件事,有的地方用@RequestMapping,有的地方用@PostMapping,为了搞清楚区别,特意查了下spring 源代码,现在特 阅读全文
posted @ 2019-07-13 14:58 ThisCall 阅读(1121) 评论(0) 推荐(0) 编辑
摘要:@RunWith(SpringRunner.class) @SpringBootTest public class RabbitMqTest { @Autowired RabbitMqSender rabbitMqSender; @Autowired IUserBaseInfoService userBaseInfoService; ... 阅读全文
posted @ 2019-07-13 10:49 ThisCall 阅读(3528) 评论(0) 推荐(0) 编辑
摘要:作用:在json序列化时将java bean中的一些属性忽略掉,序列化和反序列化都受影响。 使用方法:一般标记在属性或者方法上,返回的json数据即不包含该属性。 场景模拟: 需要把一个List<HistoryOrderBean>转换成json格式的数据传递给前台。但实体类中基本属性字段的值都存储在 阅读全文
posted @ 2019-07-11 17:16 ThisCall 阅读(388) 评论(0) 推荐(0) 编辑
摘要:知识点:@RestController注解相当于@ResponseBody + @Controller合在一起的作用。 1) 如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,或者html,配置的视图解析器 InternalReso 阅读全文
posted @ 2019-06-28 06:36 ThisCall 阅读(1895) 评论(0) 推荐(1) 编辑