我使用spring boot数据rest来接收一个json,根据它创建一个对象并保持它。
我在验证时遇到了一些问题。
实体包含一个String,其中只有一个值是可接受的。必须在application.properties中配置正确的值。 我尝试使用@Pattern进行验证,但它不起作用。
我的实体:
@Entity
public class DataObject {
@Size(max=200)
@NotNull
@Pattern(regexp = "{app.text}")
private String req_part1_comment;
getter, setter...
application.properties:
app.text =更正文字值
正如我所看到的,它无法读取属性文件中的值。
如何从application.properties添加该参数以验证实体中的String?
谢谢,