JIRA is a J2EE-based problem tracking management system developed by www.atlassian.com. It is called the bugzilla of J2EE.
Many of the open-source workflow engines we have learned use Jira for problem tracking.
Download
JIRA Web site: http://www.atlassian.com/software/jira
Register and log on, and select enterprise standalone 3.5 series to download. The name is similar to the following:
Atlassian-jira-enterprise-3.5.3-standalone
Atlassian-jira-enterprise-3.1-standalone
License:
1) Use the license for a trial. You can only use it for one month. 2) pay the license fee. 3) Open-source organizations use the license for free.
Related Software
Current System usage
JDK: Sun jdk1.4
MySQL database: mysql-4.0.20d-win.zip;
MySQL JDBC driver: mysql-connector-java-3.0.14-production-bin.jar;
Modify Database Configuration:
1) Version 3.1 is embedded with tomcat version 4.1. modify the configuration in the conf/server. xml file as follows. Pay special attention to the URL.
<Resourceparams name = "JDBC/jirads">
<Parameter>
<Name> driverclassname </Name>
<Value> com. MySQL. JDBC. Driver </value>
</Parameter>
<Parameter>
<Name> URL </Name> <value> JDBC: mysql: // localhost/jiradb? Autoreconnect = true & amp; useunicode = true & amp; characterencoding = utf8 </value>
</Parameter>
<Parameter>
<Name> username </Name>
<Value> root </value>
</Parameter>
<Parameter>
<Name> password </Name>
<Value> </value>
</Parameter>
<Parameter>
<Name> factory </Name>
<Value> org. Apache. commons. DBCP. basicperformancefactory </value>
</Parameter>
</Resourceparams>
2) version 3.5, with tomcat5.x. Modify the server. xml file as follows:
<Resource Name = "JDBC/jirads" auth = "Container" type = "javax. SQL. datasource"
Username = "root"
Password = "123456"
Driverclassname = "com. MySQL. JDBC. Driver"
Url = "JDBC: mysql: // localhost: 3306/jiradb? Autoreconnect = true & amp; useunicode = true & amp; characterencoding = utf8"
/>
3) modify the Atlassian-Jira/WEB-INF/classes/entityengine. xml file and change the database type to MySQL.
<Datasource name = "defaultds" field-type-name = "MySQL"
4) copy the database driver mysql-connector-java-3.0.14-production-bin.jar to the common/lib directory.
5) Run Tomcat and access http: // localhost: 8080.