作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在尝试构建 session 工厂时,我得到了这个。很少出现在互联网搜索中。但它让我在水中死了好几天了。谢谢。
java.lang.NoSuchMethodError: org.hibernate.cfg.Environment.verifyProperties(Ljava/util/Map;)V
at org.hibernate.service.ServiceRegistryBuilder.buildServiceRegistry(ServiceRegistryBuilder.java:244)
使用 hibernate 版本:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>4.1.1.Final</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.1.Final</version>
</dependency>
public class HibernateUtils {
private static final String DATABASE_HOST = "host_to_db";
private static SessionFactory factory;
private static ServiceRegistry serviceRegistry;
public static void init() {
Configuration config = getConfiguration();
config.configure();
serviceRegistry = new ServiceRegistryBuilder().applySettings(
config.getProperties()).buildServiceRegistry();
config.setSessionFactoryObserver(new SessionFactoryObserver() {
@Override
public void sessionFactoryCreated(SessionFactory factory) { }
@Override
public void sessionFactoryClosed(SessionFactory factory) {
ServiceRegistryBuilder.destroy(serviceRegistry);
}
});
factory = config.buildSessionFactory(serviceRegistry);
}
最佳答案
您与 hibernate-core.jar 版本有冲突, map 版本仅在更高版本中添加(可能是 4.2.X 左右?),检查您的 Eclipse/Maven“依赖层次结构”选项卡以分析版本冲突。
public static void verifyProperties(Map<?,?> configurationValues)
仅当我删除本地 Hibernate Maven 存储库并再次运行安装时,我的问题才得到解决。
关于hibernate - java.lang.NoSuchMethodError : org. hibernate .cfg.Environment.verifyProperties,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11553202/
在尝试构建 session 工厂时,我得到了这个。很少出现在互联网搜索中。但它让我在水中死了好几天了。谢谢。 java.lang.NoSuchMethodError: org.hibernate.cf
在尝试构建 session 工厂时,我得到了这个。很少出现在互联网搜索中。但它让我在水中死了好几天了。谢谢。 java.lang.NoSuchMethodError: org.hibernate.cf
我在 Java EE 6 和 JBoss 7.1.1 Final 中使用 Hibernate 作为 JPA 的提供者。我搜索了解决方案,但我是 hibernate 的新手,我没有解决这个问题。我收到此
我是一名优秀的程序员,十分优秀!