- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 JDO 持久保存到数据库的工作应用程序 - 我想使用第二个 java 模块中的 PersistenceCapable 类。尽管应用程序编译了一个简单的测试,但出现了错误:
The class "com.hello.world.Foo" is not persistable This means that it either hasnt been enhanced, or that the enhanced version of the file is not in the CLASSPATH (or is hidden by an unenhanced version), or the Meta-Data/annotations for the class are not found.
好的,所以增强器插件没有在第二个模块中的类上运行。我不确定在构建过程中需要做什么才能将增强器指向该模块。
ParentProject pom.xml 以及相关部分 - 问题是我如何将增强器指向包含我的持久类的第二个模块?
<dependencies>
<dependency>
<groupId>Second Module</groupId>
<artifactId>Second Module</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.jdo</groupId>
<artifactId>jdo-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-core</artifactId>
<version>[3.2.0, 3.2.99)</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-api-jdo</artifactId>
<version>[3.2.0, 3.2.99)</version>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-rdbms</artifactId>
<version>[3.2.0, 3.2.99)</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-maven-plugin</artifactId>
<version>3.3.0-release</version>
<configuration>
<api>JDO</api>
<props>${basedir}/datanucleus.properties</props>
<log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>enhance</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
最佳答案
明白了 - 我必须将问题中完全相同的 pom.xml 配置添加到第二个模块,并执行 mvn install
来在编译父模块之前增强这些类。在 Jetty 和 GAE 上工作。我错误地认为父模块会增强模块依赖项中包含的类。
感谢您的帮助 DataNucleus!
关于java - 通过 datanucleus maven 插件使用来自单独模块的 JDO 持久类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19431412/
我想构建一个应用程序,其中由电子邮件地址标识的用户可以拥有多个应用程序帐户。每个帐户可以有一个或多个用户。我正在尝试将 JDO 存储功能与 Google App Engine Java 结合使用。这是
我在 karaf 2.2.10 之上使用带有 datanucleus-mongodb 3.2.3 和 spring 3.0.7 的 JDO。 在新的 OSGi bundle 安装中,我能够在 mong
这些框架(JPOX JDO 和 Cater JDO)是否遵循与 Hibernate 类似的原则?他们是否使用配置数据以及反射和泛型的组合?主要的架构差异有哪些? 最佳答案 Castor JDO 不是“
尝试遵循 DataNucleus HBase tutorial 时出现异常(“必须指定名为 javax.jdo.PersistenceManagerFactoryClass 的属性”) . 我的 da
我正在尝试增强我的 Google App Engine 项目,但我不断收到此错误。在我不得不在我的机器上重新安装操作系统之前它工作得很好,现在它提示这个: [ERROR] Failed to exec
在过去,我们曾经通过存储过程访问数据库。它们被视为管理数据的“更好”方式。我们将数据保存在数据库中,任何语言/平台都可以通过JDBC/ODBC/etc访问。 然而,近年来,基于运行时反射/元数据的存储
在我的 User 类上,我有一个字符串列表字段: @Persistent private List openIds; 当我创建新用户时,我会这样做: User user = new User(); u
我目前正在 GAE 中进行开发,我必须使用 JDO 进行这样的查询: SELECT table1.column1, table2.column2 FROM table1, table2 WHERE t
我有一个 spring 测试用例,注释如下 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"cl
我的 Oracle 数据库中有两个表 请求和批准。每个审批者都有一个请求。受约束保护的外键。 在我使用 kodo jdo 3.4 的 java 代码中,我对部分或全部批准者调用删除持久性。最后,如果没
我最近开始看到 JDO 错误,例如 Class X has been specified with an object-id class javax.jdo.identity.StringIdenti
上课: class Node implements Serializable { private String name; public String getName { return
我有一个我认为是 JDO 中常见的场景。我有一个简单的持久类,比如说 @PersistenceCapable public class Person { @PrimaryKey @Pe
将对象保存到数据库时,我收到 MySQLIntegrityConstraintViolationException 。我知道这个错误意味着什么,但我无法解决它。 错误:引起:com.mysql.jdb
我正在使用 JDO 来查询我的数据库。实体类看起来有点像这样: class Entity { // other members of the class List stuff; // me
我正在使用 JDO 在 Google App Engine 中创建云端点。我有两个实体。用户实体包含组列表。组实体包含作为用户实体的成员列表。 用户实体: @PersistenceCapable(id
我正在试验 Google App Engine 和持久选项 JDO。我想知道是否可以将 transient 对象映射到持久对象?或者使用 transient 对象来更新持久对象? 在编码示例中,我看到
我正在使用连接到 MySQL 数据库的 Spring 和 JDO。当我保留一个对象时,我希望看到由 makePersistent() 方法返回的已创建对象。它确实返回了一个对象,但是这个对象只有新建对
我有两个不同的数据源,我需要两个不同的 PersistenceManagerFactory。这一点我总是可以通过编写一个 persistence.xml 文件来实现。但我希望以编程方式表示它。尽管第二
我正在尝试将 JDBC webapp 移动到 JDO DataNucleus 2.1.1。 假设我有一些看起来像这样的类: 公共(public)类职位{ 私有(private)整数 id; 私有(pr
我是一名优秀的程序员,十分优秀!