上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 228 下一页
摘要: 概述 在 Web 应用中,客户端提交数据之前都会进行数据的校验,比如用户注册时填写的邮箱地址是否符合规范、用户名长度的限制等等,不过这并不意味着服务端的代码可以免去数据验证的工作,用户也可能使用 HTTP 工具直接发送违法数据。为了保证数据的安全性,服务端的数据校验是必须的。 先理清概念: JSR- 阅读全文
posted @ 2021-01-24 19:56 牧之丨 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 从Spring的包扫描说起 SpringBoot会扫描SpringBootApplication注解标注的类,他所在的包以及这个包的子包,把那里面的Bean注册到applicationContext中,然而,在一个相对大型的项目中,Bean会很多,而且一些框架在starter中会有比较特别的配置(例 阅读全文
posted @ 2021-01-22 10:38 牧之丨 阅读(623) 评论(0) 推荐(0) 编辑
摘要: @ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = {Controller.class, RestController.class})) 前言 springboot 阅读全文
posted @ 2021-01-22 10:15 牧之丨 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: 传统的web项目,只需要在web.xml里配置多个即可,并且支持多个url-pattern 在spring boot中,我们默认无需配置,系统会自动装配一个,感兴趣的可以看下源码 org.springframework.boot.autoconfigure.web.servlet.Dispatche 阅读全文
posted @ 2021-01-21 23:11 牧之丨 阅读(518) 评论(0) 推荐(0) 编辑
摘要: package cn.service.web.common.filter; import com.alibaba.fastjson.JSON; import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.StringUt 阅读全文
posted @ 2021-01-21 23:08 牧之丨 阅读(302) 评论(0) 推荐(0) 编辑
摘要: @Configuration public class ScheduleRestConfigurer { @Bean public RestTemplate restTemplate() { RestTemplate restTemplate = new RestTemplate(httpReque 阅读全文
posted @ 2021-01-21 19:39 牧之丨 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: @ApiModel 使用场景 在实体类上边使用,标记类时swagger的解析类 概述 提供有关swagger模型的其它信息,类将在操作中用作类型时自动内省 属性 属性名称数据类型默认值说明 value String 类名 为模型提供备用名称 description String “” 提供详细的类描 阅读全文
posted @ 2021-01-21 01:08 牧之丨 阅读(2133) 评论(0) 推荐(0) 编辑
摘要: 场景: 在做接口时,有的时候,接口入参只需要一个参数,如果将一个参数封装成一个对象很麻烦,故有了以下方式: 思路: spring自带的参数解析器貌似是不具备这个能力的,所有自定义 方式方法: 1.定义一个注解 @Target(ElementType.PARAMETER) @Retention(Ret 阅读全文
posted @ 2021-01-21 00:57 牧之丨 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 由于项目将原有的 Date类型的字段改造为 LocalDate,LocalDateTime,LocalTime 类型, 发现 spring 对项目的时间格式无法自动转换,故需手动配置下。 在spring boot 中需在 maven 中引入 jsr-310 的支持 <dependency> <gro 阅读全文
posted @ 2021-01-20 21:48 牧之丨 阅读(892) 评论(0) 推荐(0) 编辑
摘要: 踩坑: 直接实现该接口,发现进入该类后的entity已经重新处理updateTime了,但是更新数据库的时候,却不带updateTime更新。 原因: 由于对该接口等认识不足导致。 解决方案: 实体类中需要添加注解:fill = FieldFill.INSERT_UPDATE 代码: /** * 更 阅读全文
posted @ 2021-01-20 20:16 牧之丨 阅读(618) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 228 下一页