参数校验学习笔记

springboot和dubbo项目注解进行参数校验

springboot项目注解进行参数校验

  • 参数是bean类型对象,在定义类时在字段上使用@NotNull等注解进行标记,然后在使用该对象作为参数的方法入口处使用@Valid来进行验证,如果controller类上加了@Validated注解,也要在参数前面加上@Validated或者@Valid注解,不然也不会起效;如下所示:
java 复制代码
// bean对象定义
public class UserReq {
	@NotNull
	private String username;
	@NotBlank
	private String password;
}
// 在controller层使用参数校验
@RestController
@RequestMapping("/user")
public class UserControler {
	
	@PostMapping("/v1")
	// 这里也可以用@Validated替换@Valid注解
	// @Validated是springboot框架在@Valid基础上实现的注解
	// @Valid是java官方的注解
	public String login(@Valid @RequestBody UserReq userReq) {
		reutrn "";
	}
}
  • 参数是基本类型;一定要在类上加上@Validated才生效,否则在参数前面加@Validated或@Valid都不会生效;@Valid在类上不生效,不能放在类上
java 复制代码
// 在controller层使用参数校验
@RestController
@RequestMapping("/user")
@Validated
public class UserControler {
	
	@PostMapping("/v1")
	// 
	public String login(@NotNull String ss) {
		reutrn "";
	}
}

dubbo接口的注解参数校验

  • bean类型的参数校验,与springboot类似,先要在bean类型的参数上使用@NotNull等进行标记,但是不需要@Valid就可以直接生效,但必须在暴露接口的配置中开启验证;如下所示:
java 复制代码
public class UserReq{
	@NotNull
	private String name;
	@NotNull
	private String password;
}

public interface UserService {
	void save(UserReq user);
}

@Service
public class UserServiceImpl implements UserService {
	// 不需要加@Valid之类
	@Override
	public void save(UserReq user) {
		System.out.println("nihao");
	}

}

// Rpc.xml配置文件 一定要加上validation = true
<dubbo:service interface="com.xxx.service.UserService" ref="userServiceImpl" validation="true" />
  • 单个参数校验:需要将参数校验写在接口而不是实现类上,这是与Springboot的区别;如下所示:
java 复制代码
public interface UserService {
	void get(@NotNull(message = "id不能为空") Long id);
}

@Service
public class UserServiceImpl implements UserService {
	// 不需要加@Valid之类
	@Override
	public void get(Long id) {
		System.out.println("nihao");
	}
}

// Rpc.xml配置文件 一定要加上validation = true
<dubbo:service interface="com.xxx.service.UserService" ref="userServiceImpl" validation="true" />

dubbo接口检验参考:
单个参数校验
参数校验

相关推荐
腥臭腐朽的日子熠熠生辉1 小时前
解决maven失效问题(现象:maven中只有jdk的工具包,没有springboot的包)
java·spring boot·maven
绝顶少年3 小时前
Spring Boot 注解:深度解析与应用场景
java·spring boot·后端
西木风落3 小时前
springboot整合Thymeleaf web开发出现Whitelabel Error Page
spring boot·thymeleaf error·whitelabelerror
有来技术5 小时前
从0到1手撸企业级权限系统:基于 youlai-boot(开源) + Java17 + Spring Boot 3 完整实战
java·spring boot·后端
橘猫云计算机设计5 小时前
基于springboot微信小程序的旅游攻略系统(源码+lw+部署文档+讲解),源码可白嫖!
java·spring boot·后端·微信小程序·毕业设计·旅游
风象南6 小时前
SpringBoot中6种跨域请求解决方案
java·spring boot·后端
良枫6 小时前
Spring Security认证授权深度解析
spring boot·spring
码视野6 小时前
基于SpringBoot的河道水情大数据可视化分析平台设计与实现(源码+论文+部署讲解等)
spring boot·后端·物联网·信息可视化·论文·本科毕业论文·计算机专业毕业论文
用键盘当武器的秋刀鱼7 小时前
springBoot统一响应类型3.5.3版本
java·spring boot·spring
喻米粒062211 小时前
RabbitMQ消息相关
java·jvm·spring boot·spring·spring cloud·sentinel·java-rabbitmq