gpt4 book ai didi

jsf - 为什么 JSF 中页面发生变化,但 URL 却没有变化?

转载 作者:行者123 更新时间:2023-12-02 04:20:42 25 4
gpt4 key购买 nike

我有简单的测试网络应用程序:第一页 - index.xhtml:

<?xml version='1.0' encoding='UTF-8' ?>
<html>
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
First page
<h:form>
<h:commandButton value="Go to Next page" action="next"/>
</h:form>
</h:body>
</html>

和下一页 - next.xhtml:

<?xml version='1.0' encoding='UTF-8' ?>
<html>
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
Next page
<h:form>
<h:commandButton value="Go to First page" action="index"/>
</h:form>
</h:body>
</html>

当我运行我的应用程序时,我在浏览器上显示该网址:

http://localhost:8080/Test/ 

并将index.xhtml 作为首页。

然后,当我单击“转到下一页”时,我有网址

http://localhost:8080/Test/index.xhtml

和 next.xhtml 页面。当我单击“转到第一页”时,页面会更改(更改为index.xhtml),但其网址为

http://localhost:8080/Test/next.xhtml

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
</listener>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

我应该怎样做才能使我的应用程序中的首页有一个 URL,

http://localhost:8080/Test/index.xhtml 

而不是

http://localhost:8080/Test/

我使用Tomcat (TomEE)/7.0.37

最佳答案

虽然这是一个旧线程,但如果有人仍在寻找它可以尝试“?faces-redirect=true”。喜欢:

<h:commandButton value="Go to Next page" action="next?faces-redirect=true"/>

关于jsf - 为什么 JSF 中页面发生变化,但 URL 却没有变化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18656700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com