我想在 joinFaces 项目中使用 @Join 注释。如果可能,配置和使用它的步骤是什么?
我正在使用带有 rewrite-spring-boot-starter 的 joinFaces 3.2.4。
我想在 joinFaces 项目中使用 @Join 注释。如果可能,配置和使用它的步骤是什么?
我正在使用带有 rewrite-spring-boot-starter 的 joinFaces 3.2.4。
实际上我在这个链接上找到了非常非常漂亮的解决方案,由 JSF 本身
页面重定向
希望有用
https://www.codenotfound.com/jsf-welcome-page-redirect-example-spring-boot.html
我花了很多时间对 Spring boot 没有希望,但是如果你想
你需要添加这个依赖项
<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>