最新回答 / 鸡里奥
你的action中使用了@Valid注解校验,你的实体类中使用@Min添加用于充当校验条件的注解了吗?https://blog.csdn.net/xzmeasy/article/details/76098188
2018-09-20
最新回答 / qq_陈宝山_0
启动时会提示错误,但继续启动可以执行,控制台不报错,但会有如下的红字:Wed Sep 19 17:17:59 CST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by ...
2018-09-19
不能建表并且不报错的同学可以试试将pom文件的parent的版本换成1.5.8.RELEASE,我之前是2.0.4.RELEASE怎么弄都不行,现在可以建表了
2018-09-19
Error occurred during initialization of VM
Could not find agent library instrument on the library path, with error: Can't find dependent libraries。哪位同学帮忙找下原因
Could not find agent library instrument on the library path, with error: Can't find dependent libraries。哪位同学帮忙找下原因
2018-09-18
@Entity导不了包的同学加上这个依赖
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.2.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.2.Final</version>
</dependency>
2018-09-18