Seam Solder @MessageBundle 生成实现类 Maven 错误

发布于 2024-12-29 11:53:39 字数 807 浏览 0 评论 0原文

我按照文档将@MessageBundle与Seam Solder 3.1.0一起使用:

http://docs.jboss.org/seam/3/3.1.0.Final/reference/en-US/html/solder-logging.html#typed-message-bundles

但是当 Maven 尝试编译生成的注释时,在编译时出现 get en 错误:

[ERROR] 错误:无法读取 com.apps.web.messages 包文件,原因 :java.io.FileNotFoundException:com.apps.web.messages/WebMessages

当我检查目标目录时,文件已正确生成:

目标/生成源/注释/com/apps/web/messages/WebMessages_$bundle.java

似乎maven插件或编译器找不到src/main/java/com/apps/web/中本地化的接口WebMessages messages/ 当他尝试编译 WebMessages_$bundle 生成的文件时。

环境:

缝焊 3.1.0.Final / Maven 3.0.3 / JDK 1.7/ JBoss AS 6.1.0

I followed the documentation to use @MessageBundle with Seam Solder 3.1.0 here :

http://docs.jboss.org/seam/3/3.1.0.Final/reference/en-US/html/solder-logging.html#typed-message-bundles

but a get en error at compile time when Maven try to compile generated annotation :

[ERROR] error: Cannot read com.apps.web.messages package files, cause
: java.io.FileNotFoundException: com.apps.web.messages/WebMessages

When I check in target directory the file is generated correctly :

target/generated-sources/annotations/com/apps/web/messages/WebMessages_$bundle.java

It seems that the maven plugins or the compiler can not find the interface WebMessages localized in src/main/java/com/apps/web/messages/ when he try to compile WebMessages_$bundle generated file.

Environnement:

Seam Solder 3.1.0.Final /
Maven 3.0.3 /
JDK 1.7 /
JBoss AS 6.1.0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耀眼的星火 2025-01-05 11:53:39

在我的 pom.xml 中:

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
  <source>1.7</source>
  <target>1.7</target>
  <compilerArgument>-AtranslationFilesPath=${project.basedir}/target/generated-sources/annotations</compilerArgument>
</configuration>
</plugin>

compilerArgument 解决了这个问题。

In my pom.xml :

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
  <source>1.7</source>
  <target>1.7</target>
  <compilerArgument>-AtranslationFilesPath=${project.basedir}/target/generated-sources/annotations</compilerArgument>
</configuration>
</plugin>

The compilerArgument solve the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文