如何从外部属性文件中将映射包含到Application.cfc中?

时间:2012-05-11 12:46:38

标签: properties coldfusion mapping application.cfc

我在Application.cfc中设置映射时遇到问题 我们有diverent服务器(dev,QS,prod) 每个人都有一点不同的Pathes。 我想通过配置文件设置服务器特定的pathes和变量。 在ApplicationStart上,您可以阅读ini文件并设置系统。 http://www.raymondcamden.com/index.cfm/2005/8/26/ColdFusion-101-Config-Files-AGoGo 这很好用。

Normaly你在Applcation.cfc中设置了这样的映射:

<!--- in Application.cfc --->
<cfset this.mappings['/components'] = "D:\Inetpub\wwwroot\myApp\components">

在正常的cfm文件中的某处,我通过以下方式实现名为test的cfc:

<cfset t = createObject("component", "components.test")>

我想在 onApplicationsStart

上只设置一次映射
<cffunction
    name="OnApplicationStart"
    access="public"
    returntype="boolean"
    output="false"
    hint="Fires when the application is first created.">

    <!---create structure to hold configuration settings--->
    <cfset ini = structNew()>
    <cfset ini.iniFile = expandPath("./ApplicationProperties.ini")>
    <cfset application.ini = ini>

    <!--- read ini file --->
    <cfset sections = getProfileSections(application.ini.iniFile)>

    <cfloop index="key" list="#sections.mappings#">
       <cfset this.mappings[key] = getProfileString(application.ini.iniFile, "mappings", key)>
    </cfloop>

但这不起作用,因为this.mappings为空并且下一个请求。 :(

将此内容放入OnRequestStart

<!--- read ini file --->
    <cfset sections = getProfileSections(application.ini.iniFile)>

    <cfloop index="key" list="#sections.mappings#">
       <cfset this.mappings[key] = getProfileString(application.ini.iniFile, "mappings", key)>
    </cfloop>

我收到一条错误,指出无法找到该组件。 这很奇怪。

将结构放入应用程序范围              

    <cfloop index="key" list="#sections.mappings#">
       <cfset APPLICATION.mappings[key] = getProfileString(application.ini.iniFile, "mappings", key)>
    </cfloop>

如何调用我的组件?

<cfset t = createObject("component", "application.components.test")>

不起作用。

所以我有3个目标。

  1. 从ini文件中读取所有的pathes和映射
  2. 在ApplicationStart上阅读一次
  3. 在源代码中使用方便。

1 个答案:

答案 0 :(得分:7)

无法在onApplicationStart()中设置映射,它们必须在Application.cfc的伪构造函数中设置,并且必须在每个请求上设置它们。

同样重要的是要注意,此时应用程序范围不可用,因此如果您需要缓存使用服务器范围所需的任何内容。您可以将映射结构缓存到服务器范围,并将其设置为this.mappings每个请求。

<cfcomponent>
  <cfset this.name = "myapp" />

  <!--- not cached so create mappings --->
  <cfif NOT structKeyExists(server, "#this.name#_mappings")>
    <cfset iniFile = getDirectoryFromPath(getCurrentTemplatePath()) & "/ApplicationProperties.ini" />
    <cfset sections = getProfileSections(iniFile) />
    <cfset mappings = structnew() />
    <cfloop index="key" list="#sections.mappings#">
      <cfset mappings[key] = getProfileString(iniFile, "mappings", key)>
    </cfloop>
    <cfset server["#this.name#_mappings"] = mappings />
  </cfif>

  <!--- assign mappings from cached struct in server scope --->
  <cfset this.mappings = server["#this.name#_mappings"] />

  <cffunction name="onApplicationStart">
  <!--- other stuff here --->
  </cffunction>

</cfcomponent>

如果您打算在webroot中保留ini文件,则应将其设为.cfm模板,并使用&lt; cfabort&gt;启动它。它将工作相同但不可读

ApplicationProperties.ini.cfm

<cfabort>
[mappings]
/foo=c:/bar/foo