@Column(name="ISPUBLIC" ,nullable=false,columnDefinition="INT default 0")
private int isPublic
注意字段的类型必须指定,因为hibernate 会把columnDefinition 的内容直接写在生成标的ddl中,因此语法必须正确
使用@Resource注解,可以选择byName和byType,默认好像是byName。你说的这个只是对属性的注入,我现在是需要赋值,比如说bean里面有个username的属性,我现在想默认设置为 “张三”,的设置而不是注入
@PathVariable 注解中,可以添加三个值,一个 name, 一个 value,还有一个required,required是boolean类型的,是否为必须的意思,默认为true@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PathVariable {
@AliasFor("name")
String value() default ""
@AliasFor("value")
String name() default ""
boolean required() default true
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)