3

我目前正在尝试将我的网站从 Adob​​e 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,表名是区分大小写的!?

4

1 回答 1

4

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

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

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

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

--->

Adobe ColdFusion 中的行为具有误导性和明显错误。"title.welcome"是应该放在 struct 中的键ress。取而代之的是,键被拆分为两个结构,其中键"title""welcome"相互链接,然后放入结构ress中。

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

于 2015-11-08T11:29:18.463 回答