appfuse的建立步骤

1. 要把database.properties和mail.properties拷贝到build/classes
2. 要在数据库中建立test用户
3. ant db-create建立数据库
4. ant db-prepare建立数据表
5. ant db-load 将数据插入到数据表中
6. 修改myapp\build\classes\META-INF目录中的applicationContext-hibernate.xml
添加
    <bean id="propertyConfigurer"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location"><value>database.properties</value></property>
    </bean>

    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName">
            <value>${hibernate.connection.driver_class}</value>
        </property>
        <property name="url">
            <value>${hibernate.connection.url}</value>
        </property>
        <property name="username">
            <value>${hibernate.connection.username}</value>
        </property>
        <property name="password">
            <value>${hibernate.connection.password}</value>
        </property>
    </bean>
7. 修改myapp\build\class\META-INF目录下的applicationContext-service.xml
将其中的mail.host, mail.username, mail.password, mail.default.from
三个变量修改成合适的值
8. ant deploy
9. 启动tomcat, http://localhost:8080/myapp
10. 输入mraible,密码tomcat,进入系统

你可能感兴趣的:(appfuse的建立步骤)