问题从Adobe Coldfusion 10迁移到Lucee 4.5.1 - 访问结构

时间:2015-11-07 21:51:44

标签: coldfusion lucee

我目前正在尝试将我的网站从Adobe Coldfusion 10迁移到Lucee 4.5.1。

我收到以下错误:key [TITLE] doesn't exist

我使用的代码是:

<cfset variables.title = ress.title.welcome>

我需要解决问题的代码似乎是:

<cfset variables.title = ress["title.welcome"]>

我正在使用JavaRB并加载属性文件(onRequestStart())并将其设置为变量ress。

<cfset ress = utilObj.getResourceBundle()>

除了通过我的代码修复所有引用之外,还有其他选择吗?服务器中是否有设置来显示旧行为?

更新#1

属性文件如下所示:

# @comment 
title.welcome=Content here

更新#2

目前适用于Windows 2008 R2上的CF10 Developer和我的共享主机(也是Windows Server)上的CF10。我还要承认这是旧代码:)

JavaRB从文件内容返回结构:

var resourceBundle=structNew(); // structure to hold resource bundle
...
<cfreturn resourceBundle />

部分CFC和方法调用......

<cfcomponent name="utils" output="false">

    <cfset this.ress = "">

    <cffunction name="init">
        <cfscript>
            this.ress = loadResourceBundle();
        </cfscript>
        <cfreturn this>
    </cffunction>

    <cffunction name="loadResourceBundle" access="public" output="true">
        <!--- Get javaRB --->
        <cfinvoke component="#application.cfcPath#.javaRB" method="init" returnvariable="rb">
        </cfinvoke>
        <cfscript>
            rbFile = GetDirectoryFromPath(expandpath("/resources/")) & "mgs.properties";
        </cfscript>
        <cfreturn rb.getResourceBundle("#rbFile#")>
    </cffunction>
    ...
</cfcomponent>


<cfcomponent displayname="javaRB" output="no">
    <cffunction access="public" name="init" output="No">
        <cfscript>
            rB=createObject("java", "java.util.PropertyResourceBundle");
            fis=createObject("java", "java.io.FileInputStream"); 
            msgFormat=createObject("java", "java.text.MessageFormat");  
            locale=createObject("java","java.util.Locale");
        </cfscript>

        <cfreturn this>
    </cffunction>

    <cffunction access="public" name="getResourceBundle" output="No" returntype="struct" hint="reads and parses java resource bundle per locale">
        <cfargument name="rbFile" required="Yes" type="string" />
        <cfargument name="rbLocale" required="No" type="string" default="en_US" />
        <cfargument name="markDebug" required="No" type="boolean" default="false" />
        <cfscript>
            var isOk=false; // success flag
            var keys=""; // var to hold rb keys
            var resourceBundle=structNew(); // structure to hold resource bundle
            var thisKey="";
            var thisMSG="";
            var thisLang=listFirst(arguments.rbLocale,"_");
            var thisDir=GetDirectoryFromPath(arguments.rbFile);
            var thisFile=getFileFromPath(arguments.rbFile);
            var thisRBfile=thisDir & listFirst(thisFile,".") & "_"& arguments.rbLocale & "." & listLast(thisFile,".");
            if (NOT fileExists(thisRBfile)) //try just the language
                thisRBfile=thisDir & listFirst(thisFile,".") & "_"& thisLang & "." & listLast(thisFile,".");
            if (NOT fileExists(thisRBfile))// still nothing? strip thisRBfile back to base rb
                thisRBFile=arguments.rbFile;
            if (fileExists(thisRBFile)) { // final check, if this fails the file is not where it should be
                isOK=true;
                fis.init(thisRBFile);
                rB.init(fis);
                keys=rB.getKeys();
                while (keys.hasMoreElements()) {
                    thisKEY=keys.nextElement();
                    thisMSG=rB.handleGetObject(thisKey);
                    if (arguments.markDebug)
                        resourceBundle["#thisKEY#"]="****"&thisMSG;
                    else
                        resourceBundle["#thisKEY#"]=thisMSG;
                    }
                fis.close();
                }
        </cfscript> 
        <cfif isOK>
            <cfreturn resourceBundle />
        <cfelse>
            <cfthrow message="#e.message#" detail="#e.detail#" type="#e.type#" />
        </cfif>
    </cffunction>
    ...
</cfcomponent>

更新#3

FWIW,我使用Eclipse IDE并使用正则表达式进行查找替换并将其替换为值...

正则表达式:((ress\.){1}(([a-z\.])+))

值:ress["$3"]

更新#4

因此,使用Lucee和MySQL,表名区分大小写!?

1 个答案:

答案 0 :(得分:4)

欢迎使用Adobe ColdFusion,语法错误不会立即受到惩罚。

<cfset ress = { "title.welcome": "Content here" }>

<cfoutput>#ress.title.welcome#</cfoutput>
<!---

    >> outputs "Content here" in Adobe ColdFusion
    >> throws an exception in Lucee/Railo

--->

Adob​​e ColdFusion中的行为具有误导性且完全错误。 "title.welcome"是一个应该放在struct ress中的键。而是将密钥拆分为两个结构,其中键"title""welcome"相互链接,然后放入结构ress

解决此问题的唯一机会是调整getResourceBundle功能。在这里,您需要使用resourceBundle["#thisKEY#"]重构行,以便thisKEY创建结构链。