@notnull(null)
@NotEmpty,NotNull和@NotBlank的区别
1.@NotNull:不能为null,但可以为empty
(""," "," ")
2.@NotEmpty:不能为null,而且长度必须大于0
(" "," ")
3.@NotBlank:只能作用在String上,不能为null,而且调用trim()后,长度必须大于0
("test") 即:必须有实际字符
*
@NotNull: The CharSequence, Collection, Map or Array object is not null,
but can be empty.
@NotEmpty: The CharSequence, Collection, Map or Array object is not null
and size 0.
@NotBlank: The string is not null and the trimmed length is greater than
zero.
4.examples:
1.String name = null;
@NotNull: false
@NotEmpty:false
@NotBlank:false
2.String name = "";
@NotNull:true
@NotEmpty: false
@NotBlank: false
3.String name = " ";
@NotNull: true
@NotEmpty: true
@NotBlank: false
4.String name = "Great answer!";
@NotNull: true
@NotEmpty:true
@NotBlank:true
SpringMVC注解中的这个@Resource和@Notnull各有什么用处?
@Resource是源的意思,作用要从容器中得到你注入过的类,functionMqr是注入是的名称,可以你自己定义也可以默认。
@Resource+@NotNull的作用,要从容器中拿到这个注入的对象来使用,并且这个对象不能为空。
具体的作用讲解如下:
一、@Resource
Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource、@PostConstruct以及@PreDestroy。
@Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入罢了。
@Resource有两个属性是比较重要的,分是name和type,Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析为bean的类型,如果使用name属性,则使用byName的自动注入策略,而使用type属性时则使用byType自动注入策略。如果既不指定name也不指定type属性,这时将通过反射机制使用byName自动注入策略。
@Resource装配顺序
如果同时指定了name和type,则从Spring上下文中找到唯一匹配的bean进行装配,找不到则抛出异常。
如果指定了name,则从上下文中查找名称(id)匹配的bean进行装配,找不到则抛出异常。
如果指定了type,则从上下文中找到类型匹配的唯一bean进行装配,找不到或者找到多个,都会抛出异常。
如果既没有指定name,又没有指定type,则自动按照byName方式进行装配;如果没有匹配,则回退为一个原始类型进行匹配,如果匹配则自动装配;
二、@NotNull
定义关于约定可空性(Nullability),要通过使用像@NotNull和@Nullable类似的注释提示这个方法是否为空安全(null safe)。
代码如下:
/**?*?The?annotated?element?must?not?be?
{@code?null}.?*?Accepts?any?type.?*?*?@author?Emmanuel?Bernard?
*/
@notnull和notempty可以同义替换吗
可以。Null是在计算中具有保留的值,@notnull和notempty可以同义替换,用于指示指针不引用有效对象。程序通常使用空指针来表示条件,例如未知长度列表的结尾或未执行某些操作。
spring3 mvc注解校验@NotNull不起作用,该怎么解决
有可能是pom导入包错误,@NotNull没有生效,没有验证,进入了数据库就会报500的错误
!-- --
dependency
groupIdjavax.validation/groupId
artifactIdvalidation-api/artifactId
version1.1.0.Final/version
/dependency
!-- --
dependency
groupIdorg.hibernate/groupId
artifactIdhibernate-validator/artifactId
version5.2.2.Final/version
/dependency
//创建
@RequestMapping(path = "/", method = RequestMethod.POST)
public UserDto createUser(@Valid @RequestBody UserDto userDto) {
return userService.createUser(userDto);
}
@NotNull(message="用户名不能为空")
private String nickName;
如果是生效的注解,会报400的错误
@NotBlank、@NotNull、@NotEmpty、@NonNull四者之间的区别
1.@NotNull: 用在基本类型上 ,不能为null,但可以为空字符串
2.@NotEmpty: 用在集合类上 ,不能为null,并且长度必须大于0
3.@NotBlank: 只能作用在String上 ,不能为null,而且调用trim()后,长度必须大于0
4.@NonNull: 在方法或构造函数的参数上使用, 生成一个空值检查语句
java的@NotNull有实际作用吗?
/**
* Denotes that a parameter, field or method return value can never be null.
* This is a marker annotation and it has no specific attributes.
*/
//解释:指明一个参数,字段或者方法的返回值不可以为null;
//这是一个动画标记,没有特定的属性值;
有作用,但这个只是IDE对代码的静态检查null,运行时传递过来的null还是需要用代码做好空保护。