xplanner使用手记(安装)(2)

类别:软件工程 点击:0 评论:0 推荐:
Xplanner的安装

1.       下载xplanner

http://www.xplanner.org

 

2.       下载汉化版的cnxplanner

在http://www.softme.com/ 下载cnXPlanner-0.6.1.war,重命名为xplanner.war。

 

3.       配置ant

到http://www.apache.org下载ant,关于ant的配置这里就不详细说了

 

4.       建立数据库

这里用的数据库是Mysql,到http://www.mysql.org下载,建立一个xplanner的数据库

建立一个xplanner的用户,密码设定为123456

 

5.       用ant建表

将下载的xplanner解压缩

进入resources文件夹,修改xplanner.properties文件,将数据库和用户名修改为之前自己建立的名称。

hibernate.connection.url=jdbc:mysql://127.0.0.1/xplanner?autoReconnect=true

hibernate.connection.username=xplanner

hibernate.connection.password=123456

找到build.xml

在DOS下进入build.xml所在目录,执行ant install.db.schema

 

6.       修改cnxplanner的数据库连接串

用winzip之类的解压缩工具打开cnxplanner.war,修改WEB-INF\classes下的xplanner.properties

改成

hibernate.connection.url=jdbc:mysql://127.0.0.1/xplanner?autoReconnect=true

hibernate.connection.username=xplanner

hibernate.connection.password=123456

与刚才建库时相同的内容即可

 

7.       将xplanner.war拷贝到tomcat下的webapps下

8.       执行tomcat,运行http://localhost:8080/xplanner即可看到效果

本文地址:http://com.8s8s.com/it/it35690.htm