1.检查是否将Entity添加到database
2.默认打印100行错误,有的时候需要设置打印更多行错误
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}
1.检查是否将Entity添加到database
2.默认打印100行错误,有的时候需要设置打印更多行错误
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}