2012-05-10 7 views
0

私がJettyサーバー上でJSFアプリケーションを実行していたとき、正常に動作していました。ビュー識別子に保存されたビュー状態が見つかりませんでした

しかし、これをWeblogicサーバーに移動したときに、このエラーが表示されました。

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:h="http://java.sun.com/jsf/html" 
    xmlns:f="http://java.sun.com/jsf/core" 
    xmlns:ui="http://java.sun.com/jsf/facelets" 
    xmlns:p="http://primefaces.org/ui" xmlns:lang="en"> 

<f:view xmlns:c="http://java.sun.com/jstl/core" 
    xmlns:s="http://www.springframework.org/tags" 
    xmlns:form="http://www.springframework.org/tags/form"> 
    <h:head> 
     <h:outputStylesheet library="css" name="../resources/css/style.css" 
      target="head" /> 
     <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
     <title>Test Client</title> 
     <link rel="shortcut icon" href="../resources/images/favicon.ico" /> 
     <link rel="stylesheet" href="../resources/css/style.css" 
      type="text/css" media="all" /> 
    </h:head> 
    <h:body> 
     <ui:include src="header.xhtml" /> 
     <div id="home-training-container"> 
      <h:form> 
       <table align="center" border="1"> 
        <tr> 
         <td><h:commandLink value="First Web Service" 
           action="#{wsListingBean.action}"> 
           <f:setPropertyActionListener 
            target="#{wsListingBean.webServiceId}" value="abcService" /> 
          </h:commandLink></td> 
        </tr> 
        <tr> 
         <td><h:commandLink value="Second Web Service" 
           action="#{wsListingBean.action}"> 
           <f:setPropertyActionListener 
            target="#{wsListingBean.webServiceId}" value="filterabc" /> 
          </h:commandLink></td> 
        </tr> 
        <tr> 
         <td>Third Web Service</td> 
        </tr> 
        <tr> 
         <td>Fourth Web Service</td> 
        </tr> 
        <tr> 
         <td>Fifth Web Service</td> 
        </tr> 
       </table> 
      </h:form> 
     </div> 
     <ui:include src="footer.xhtml" /> 
    </h:body> 
</f:view> 
</html> 

私は、コマンドのリンクのいずれかをクリックすると、この問題が来ている:何これについてどんな考えを持っ

<h:commandLink value="First Web Service" 
            action="#{wsListingBean.action}"> 
            <f:setPropertyActionListener 
             target="#{wsListingBean.webServiceId}" value="abcService" /> 

誰もがwsListing.xhtmlは以下のとおりである

javax.faces.application.ViewExpiredException: /wsListing.xhtmlNo saved view state could be found for the view identifier: /wsListing.xhtml 
at org.apache.myfaces.lifecycle.RestoreViewExecutor.execute(RestoreViewExecutor.java:132) 
at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:170) 
at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117) 
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197) 
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226) 
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124) 
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283) 
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) 
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) 
at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26) 
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) 
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402) 
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) 
at weblogic.security.service.SecurityManager.runAs(Unknown Source) 
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140) 
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046) 
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1398) 
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200) 
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172) 

ビューの状態は?

+1

エラーを修正するためにこれですべての運をweb.xmlのに次の行を入れていますか?もしそうなら、他の人がその答えから恩恵を受けるように、これを解決で更新してください。ありがとう。 – BestPractices

答えて

2

web.xmlのPROJECT_STAGEに「開発」が設定されていますか?もしそうなら、それをProductionに切り替えて、問題がなくなるかどうか確認できますか? WebLogic上で同じではないにしても同じエラーメッセージが表示され、その変更により修正されたと考えられます。

1

私はSAM--

<context-param> 
    <!--description> 
     The location where state information is saved. Valid values 
     are 'server' (typically saved in HttpSession) and 'client' 
     (typically saved as a hidden field in the form. Default is 
     server. 
     </description--> 
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name> 
    <param-value>server</param-value> 
</context-param> 
<context-param> 
    <!--description> 
     Number of Views to be stored in the session when Server-Side 
     State Saving is being used. Default is 20. 
     </description--> 
    <param-name> 
     org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION 
    </param-name> 
    <param-value>20</param-value> 
</context-param>  
関連する問題