We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23b1f44 commit 61243e5Copy full SHA for 61243e5
springboot-starter-persistence/src/main/java/com/codingapi/springboot/persistence/schema/Schema.java
@@ -17,10 +17,10 @@ public Schema(Class<?> domainClass) {
17
log.info("Schema init:{}", domainClass);
18
this.domainClass = domainClass;
19
this.schemaProperty = new SchemaProperty(domainClass);
20
- this.check();
+ this.verify();
21
}
22
23
- public void check() {
+ public void verify() {
24
if (!this.schemaProperty.hasIdProperty()) {
25
throw new RuntimeException("schema id property not found");
26
0 commit comments