1

新しい cfbuilder を使用し、ANT を使用してコードを開発サーバーにプッシュしています。発生し続ける問題の 1 つは、beans.xml ファイルに変更を加えると、Ant ビルドが beans.xml ファイルで例外をスローすることです。

これは私が得る例外です:

BUILD FAILED
C:\workingcopies\bpmMag\config\beans.xml:3: Unexpected element "{}beans" {antlib:org.apache.tools.ant}beans

ここに私のビルドファイルがあります:

<?xml version="1.0" encoding="UTF-8"?>
<project name="build" default="" basedir=".">
<description>
    A description of what this build file does
</description>   

<!-- Location of working Copy -->
    <property name="workingCopy" value="C:\workingcopies\bpmMag" />

<!-- Location of testing server -->
    <property name="testServer" value="Z:\www\dev7.devstation\htdocs" />



<!-- Test Target -->
    <target name="test">
        <copy todir="${testServer}">
            <fileset dir="${workingCopy}">
                <exclude name="coldspring/**"/>
                <exclude name="**/*.project"/>
                <exclude name="settings.xml"/>
                <exclude name=".settings/**"/>
                <exclude name="build.xml"/>
            </fileset>
        </copy>  
    </target>

ここに私のbeans.xmlがあります

<?xml version="1.0" encoding="UTF-8"?>

<beans>

<!-- Advice Beans -->
<bean id="AdviceDAO" class="com.model.advice.dao.AdviceDAO">
    <constructor-arg name="dsn"><value>${dsn}</value></constructor-arg>
</bean>
<bean id="AdviceGateway" class="com.model.advice.gateway.AdviceGW">
    <constructor-arg name="dsn"><value>${dsn}</value></constructor-arg>
</bean>
<bean id="AdviceService" class="com.model.advice.service.AdviceSV">
    <constructor-arg name="adviceDAO">
        <ref bean="adviceDAO"/>
    </constructor-arg>
    <constructor-arg name="adviceGateway">
        <ref bean="adviceGateway"/>
    </constructor-arg>
</bean>
</beans>
4

1 に答える 1