1

我正在尝试创建到父文件夹的特定于应用程序的映射。出于某种原因,这适用于我的本地开发环境,我收到错误

无效的组件定义,找不到组件 [cfc.udf]

目录结构:

--- website1
------- application.cfc

--- cfc
------ udf.cfc

application.cfc 上的代码:

<cfcomponent> 
    <cfset This.name = "Website1">
    <cfset This.Sessionmanagement=true>
    <cfset This.Sessiontimeout="#createtimespan(0,0,30,0)#">
    <cfset this.mappings["/cfc"] = expandPath('../cfc') />

    <cffunction name="onApplicationStart">
         <cfset Application.udf = createObject("cfc.udf")>
    </cffunction>
</cfcomponent>

我正在使用 Lucee 1.5

当我输出应用程序时,如下所示:

<cfset app = CreateObject("component",  "application") />
<cfdump var="#app#">

我明白了

MAPPINGS    
    Struct
        cfc string  D:\WebSites\parent-directory\cfc

我有点失落

更新:

回应@leigh:

--- parent-directory
    --- website1
       --- application.cfc
    --- cfc
       --- udf.cfc
4

1 回答 1

1

原来它与 Coldfusion 或 Lucee 无关。

问题是我们如何在 IIS 上设置站点。我们不得不从 IP + : + 端口切换到使用此环境的子域。所以,tomkat 在错误的背景下寻找......或者至少这是我被告知的。这有点超出了我最熟悉的抽象层。

于 2016-01-29T20:42:50.423 回答