首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从Jdeveloper 11.1.1,7,1升级应用程序时,jdeveloper 12.2.1.2出现错误

从Jdeveloper 11.1.1,7,1升级应用程序时,jdeveloper 12.2.1.2出现错误
EN

Stack Overflow用户
提问于 2017-09-19 15:29:11
回答 1查看 1.2K关注 0票数 0

我正在尝试将我的应用程序从11g升级到12c。因为我得到了一个错误。

代码语言:javascript
复制
<org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <ViewHandlerImpl> <_isTimestampCheckEnabled> <Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml> 
<org.apache.myfaces.trinidadinternal.util.FrameBustingUtils> <FrameBustingUtils> <_getFrameBustingString> <The framebusting context param 'oracle.adf.view.rich.security.FRAME_BUSTING' has been deprecated. Please change your web.xml to use 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' instead. The legal values are 'always', 'never', and 'differentOrigin'. If you were setting the value of 'oracle.adf.view.rich.security.FRAME_BUSTING' to 'differentDomain', then please note that you should set 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' to 'differentOrigin'.> 
<oracle.adf.view> <UIXRegion> <_logNullValueMessage> <The expression "#{bindings.AddTypeBTF1.regionModel}" that was specified for the RegionModel "value" attribute of the region component with id ":pt1:r1" evaluated to null. Using an empty RegionModel instead.> 
<oracle.adf.view> <UIXRegion> <_logNullValueMessage> <The expression "#{bindings.AddTypeBTF1}" evaluated to "".
The expression "#{bindings}" evaluated to "".
> 
<org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetDocument> <StyleSheetDocument> <_resolveStyleNode> <Circular dependency detected in style af|dvt-timeline> 
<Sep 19, 2017, 12:48:00,384 PM IST> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:50,050 during the configured idle timeout of 5 seconds.> 

这是我的页面

代码语言:javascript
复制
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>


<f:view>
    <af:document id="d1" title="PMS">
      <af:form id="f1">
       <af:pageTemplate viewId="/PMS/Template/PMSTemplate.jspx" id="pt1">
          <f:facet name="Content">
        <af:region value="#{bindings.AddTypeBTF1.regionModel}" id="r1"/>
        </f:facet>
        </af:pageTemplate>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>

这是页面的绑定

代码语言:javascript
复制
<?xml version="1.0" encoding="UTF-8" ?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.65.57" id="PMSTypeMasterPageDef"
                Package="PMS.Pages">
  <parameters/>
  <executables>
    <variableIterator id="variables"/>
    <taskFlow id="AddTypeBTF1"
              taskFlowId="/PMS/TaskFlows/AddTypeBTF.xml#AddTypeBTF"
              activation="deferred"
              xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
  </executables>
  <bindings/>
</pageDefinition>

页面中或pagedef中没有任何警告。我试图清理我的应用程序,并从我的PC上删除所有缓存和无用的东西。它仍然不起作用。

我向我的同事询问了这个问题。他们有相似的面孔。通过清理应用程序解决了这个问题,并且他们已经重新启动了Jdeveloper。但是和我不一样。

我在网上找过了。许多站点建议在pagedef中可能没有条目。但是我也可以在那里找到taskflow的入口。

EN

回答 1

Stack Overflow用户

发布于 2019-04-24 19:16:17

代码语言:javascript
复制
  <context-param>
<description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
<param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
<param-value>false</param-value>

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/46294469

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档