有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java自动生成的捆绑包文件不是在使用I18N4Vaadin的Vaadin项目中创建的

我正试图通过以下教程,用I18N4Vaadin启动一个新的Vaadin项目,以实现国际化:https://github.com/peholmst/I18N4Vaadin/wiki/Using-I18N4Vaadin-with-CDI但我无法生成自动生成的文件(.java和.properties捆绑文件)

除此之外,我还在pom中添加了Abundleperclass标记。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>

这些自动生成的文件应该在部署之后创建,对吗

少了什么吗

提前谢谢


共 (0) 个答案