1

我有一个带有字节数组类型字段的实体。

静态元模型在部署期间抛出错误。

如果我想查询该字段,我会尝试修复它,但我不这样做。它是二进制数据@Lob。

是否有 @Annotation 使自动生成在编译期间跳过字段?即使是一堂课,我也只能在等待修复时才对该课使用 JPQL。

我在 Rational App 中工作。开发人员 (Eclipse/OpenJPA)

谢谢,

蒂埃里·杜帕德

4

1 回答 1

1

编译后可以删除文件:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
    <execution>
        <phase>compile</phase>
        <goals>
            <goal>run</goal>
        </goals>
        <configuration>
            <tasks>
                <delete>
                    <fileset dir="${project.build.outputDirectory}/../generated-sources/annotations/org/...="*.java" />
                    <fileset dir="${project.build.outputDirectory}/org/..." includes="*_.class" />
                </delete>
            </tasks>
        </configuration>
    </execution>
</executions>
</plugin>
于 2016-05-31T11:38:08.420 回答