Portfolio » Web Applications
Bug Tracking Tool
URL: Bug Tracking Tool Demo
A custom bug tracking tool I wrote for a team of in-house PHP developers.
It allows the developer to report on issue which occur during their testing phase.
Developers can create and update the severity of the bugs using the html/jsp pages as well as search for specific bugs.
The website runs on a combination of J2EE and MySQL technologies.
Features
- Stored Procedures and Views
- Design Patterns
- JSTL
- CRUD Capability
- First Level Cache
- Tomcat 5.5
Code Snippet
public String escape(String raw) { if(raw == null) return raw; StringBuffer sb = new StringBuffer(raw.length()*2); int unesc; int len; String hex; for(int i = 0; i < raw.length(); i++) { char ch = raw.charAt(i); int ich = (int)ch; ... |
screenshots
« Back to the web applications