我正在尝试使用I18N4Vaadin开始一个新的Vaadin项目,以便通过以下教程进行国际化:https://github.com/peholmst/I18N4Vaadin/wiki/Using-I18N4Vaadin-with-CDI但我无法生成自动生成的文件(.java和.properties包文件)。
除此之外,我已将Abundleperclass标记添加到pom.xml。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArguments>
<Abundleperclass>true</Abundleperclass>
</compilerArguments>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
这些自动生成的文件应该在部署之后创建,对吗?
有什么遗失吗?
提前谢谢!