1、当然是下载Appfuse、设置JDK的路径和Tomcat的安装路径,在这里我使用的IDE是Eclipse,Appfuse的框架是WebWork + Spring + Hibernate。
Appfuse的下载:https://appfuse.dev.java.net/servlets/ProjectDocumentList
2、运行Eclipse,使用 File->>Import 来导入Appfuse项目。
3、在Appfuse中,它使用的默认的数据库是MySQL。在properties.xml中可以设置数据库的属性,
4、当然你也可以在build.properties中更改所用的数据库。而在build.properties中已有一个注释的PostgreSQL数据库的选择:
#database.jar=${postgresql.jar}
#database.type=postgresql
#database.host=localhost
#database URL for creating other databases (doesn't work with pgsql)
#database.admin.url=jdbc:${database.type}://${database.host}/template1
#database.admin.username=postgres
#database.admin.password=postgres
#hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
#database.driver_class=org.postgresql.Driver
#database.url=jdbc:${database.type}://${database.host}/${database.name}
5、设置本机的 SMTP Server 或者修改 mail.properties 文件(在 web/WEB-INF/classes 目录下) 和 build.properties 文件(在根目录下 -- 给 log4j 消息使用) 以使用一个已有的SMTP Server- 默认值是 localhost。
6、在build.xml中先使用Ant运行setup-db来安装数据库,使用deploy将Appfusea项目布署到Tomcat中。
参考:http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseQuickStart_zh
注意:
1、如果不想在环境变量中设置Tomcat的路径,可以在properties.xml中直接将Tomcat的路径写进去。
<property name="tomcat.home" value="${env.CATALINA_HOME}"></property> <property name="tomcat.home" value="${env.CATALINA_HOME}"></property>
如果Tomcat在C:,那么可以写成: <property name="tomcat.home" value="C:/Tomcat"></property>
2、在使用Appfuse的过程中,发现Appfuse的Ant Task太强大了,打算下一步学习Appfuse Ant的使用,不过Appfuse2.0将会迁移到Maven中,这个也有机会学习学习,呵呵。