用xplanner管理项目

类别:Java 点击:0 评论:0 推荐:

1:下载xplanner(目前版本是0.6.2)
http://sourceforge.net/project/showfiles.php?group_id=49017

2: 配置ant

到http://www.apache.org下载ant,将这个解压如d:\ant,设定ant_home=d:\ant,然后就可以用了

3:新建数据库,如我在mysql中建立一个xplanner的数据库

4:用ant建表

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

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

hibernate.connection.username=root

hibernate.connection.password=
找到build.xml

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

在这一步中将会在数据库中建表,以及假如一个用户名为“sysadmin“密码为“admin“的初始用户


5:运行ant create.db.schema.script
这个将会生成一个hibernate_schema.sql 文件

6:配置email
在xplanner.properties文件中找到
xplanner.mail.smtp.host=localhost        # enter your SMTP host
[email protected]  # enter the email sender for XPlanner messages
将他改成你的配置

7 Build the xplanner.war 文件
到xplanner(有build.xml文件)的目录,运行
$ ant build.war
这样就会在xplanner.war 文件生成

8:copy xplanner.war 到tomcat下的webapp目录下,启动tomcat
在浏览器中输入http://localhost:8080/xplanner/ 就会看到如下界面



输入用户名sysadmin与密码admin登陆
就会出现如下界面



其中可以增加项目,人员,时间表

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