是否可以在连接面上使用重写的注释@Join?



我想在joinFaces项目中使用@Join注释。 如果可能,配置和使用它的步骤是什么?

我正在使用带有重写弹簧启动器的joinFaces 3.2.4。

实际上我在这个链接上找到了非常非常漂亮的解决方案 通过JSF本身

页面重定向

希望有用

https://www.codenotfound.com/jsf-welcome-page-redirect-example-spring-boot.html

我在 Spring 启动没有希望的情况下发送了很多时间,但是如果您愿意
,您需要添加此依赖项

<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-servlet</artifactId>
<version>3.4.2.Final</version>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-integration-faces</artifactId>
<version>3.4.2.Final</version>
</dependency>
<dependency>
<groupId>org.ocpsoft.rewrite</groupId>
<artifactId>rewrite-config-prettyfaces</artifactId>
<version>3.4.2.Final</version>
</dependency>

最新更新