在我尝试使用 IntelliJ Idea 在休眠项目中手动添加 ehcache 依赖项失败后,我决定使用 maven 并向项目添加 maven 框架支持。现在我有一个现有的 pom.xml 文件,我想添加 pom(它的依赖项)从这个位置(http://repo1.maven.org/maven2/org/hibernate/hibernate-ehcache/4.1.9.Final/)。我怎么做?我可以在一个项目中拥有多个 pom.xml 文件吗?谢谢你。
这是我正在使用的当前 pom.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>HibernateProject1</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.1.9.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>4.1.9.Final</version>
</dependency>
</dependencies>
</project>
现在我收到以下错误:
线程“主”org.hibernate.HibernateException 中的异常:/hibernate.cfg.xml 未找到