Archive

Archive for the ‘Web Application’ Category

Issue Tracking System With SAAS Model

June 17th, 2010 kumarasamy No comments
I was not able to write on my blog, since my concentration was little diverted to my old pending task of completing the SaaS based issue tracking system, Actually the idea started in 2007, when my boss asked manojbabu to look for an issue tracking system. And started coding for two or three pages, then stopped after that, due to some other important work. Now thought of starting it again and since i lost the previous code I’ve started again from scratch. i.e Writing a Class for DB Connection and for Grid View as well, including JavaScript and luckily i have got the images from Manojbabu.Thanks to him for the designs.I’m still brain storming for many ideas. But the basic skeleton is ready.
Since i said this follows SaaS model, we need a to establish the master data, we need many interfaces for this it self.Even though the requirements are pretty similar it took little more time than the expected, this is since i lost the touch in Coding and in LAMP stack tooo. It was a great fun to go back to LAMP and code again. Following screen shot shows how does an admin establishes the master for a company from scratch including from creating a new company.
Login Page
Login
Admin Page with All the Master Data Creation Page
Admin Home
Grid View with Pagination
Grid View
Form Validation With AJAX
Forms
Creating an Issue
Issue Creation
Search For an Issue
Search an Issue
Search For an Issue Result with a Special Image for Edit
Issue Result Grid
Features that are really in need and to be implemented are

  1. File Upload is still pending, since i need to learn that clearly and write a generic component :(
  2. Grid View Can get a Search Bar.
  3. Exporting to Other Microsoft Office Formats.
  4. Revision History is Not Complete Yet.
  5. UI improvements for Changing the Status of a Issue.
  6. and goes on.
During my brain storming, i have got lot of ideas, to be implemented are

  1. JQuery can be used to improve the UI
  2. LAMP can use MemChache module to improve the performance
  3. Can be integrated with Twitter,RSS and SMS
  4. LDAP authentication
  5. Multi language and DB support.
There are many options like this, but i don’t know how far go ahead and do it. After completing the necessary features, i’ll be attempting to integrate with Twitter and RSS.
Very seriously i’m laughing @ me because we have 100’s of open source web application available for Issue tracking, i don’t understand whats the fun in developing one more on the same, End of the day i’ve brushed by LAMP knowledge to the level, but the not upto the mark what i’ve learned from my Guru in Baba9.
Digg This
Reddit This
Stumble Now!
Buzz This
Vote on DZone
Share on Facebook
Bookmark this on Delicious
Kick It on DotNetKicks.com
Shout it
Share on LinkedIn
Bookmark this on Technorati
Post on Twitter
Google Buzz (aka. Google Reader)

Hibernate, the ORM Library for Java

May 5th, 2010 kumarasamy No comments
Object-relational mapping
Which helps you in converting the relational databases to object oriented programming languages,which help a developer to keep the persistence of the domain object.Basically ORM tools will provide the bridge between the database and the application by storing application objects in the database for the developer, rather than requiring the developer to write and maintain mountains of code to store and retrieve objects.
In other words we can say, Object/relational mapping (ORM) is the process of persisting objects in a relational database. ORM bridges the gap between object and relational schemas, allowing your application to persist objects directly without requiring you to convert objects to and from a relational format.There are List of ORM softwares for Java.
All among the list of Software’s Hibernate, requires a small amount of metadata for each persistent object. Hibernate operates independently of application architecture, allowing it to be used in various applications. It provides full object/relational mapping,meaning that it supports all the available object-oriented features that relational databases lack.
Hibernate - Free GPL,ORM Library
The primary feature’s are,

  • Mapping - Hibernate maps the java classes a.k.a domain objects to db tables through xml configuration. This xml configuration tells the Hibernate how to persist these objects.
  • Persistence - Hibernate provides transparent persistence for Plain Old Java Objects (POJOs). The only strict requirement for a persistent class is a no-argument constructor, not necessarily public
  • Hibernate Query Language (HQL) - Hibernate provides a SQL inspired language called Hibernate Query Language (HQL) which allows SQL-like queries to be written against Hibernate’s data objects. Criteria Queries are provided as an object-oriented alternative to QL.
Mapping XML
Mapping definitions, also called mapping documents, are used to provide Hibernate with information to persist objects to a relational database.The mapping files also provide support features, such as creating the database schema from a collection of mapping files.The mapping file tells Hibernate what table in the database it has to access,and what columns in that table it should use.
<?xml version="1.0"?>
<hibernate-mapping package="com.techmaddy.domain">
[...]
</hibernate-mapping>
Now we’ll try to add the domain object Book, which holds Author, Edition. By this we are telling the Hibernate to persist this object and map from RDBMS to java code.So the above mentioned XML will be changed to the following.
<?xml version="1.0"?>
<hibernate-mapping package="com.techmaddy.domain">
<class name="com.techmaddy.domain.Book" table="HBD_BOOKS">
	<property  name="authorName" type="string" column="HBD_AUTHNAME" not-null="true" />
	<property  name="edition" type="string" column="HBD_EDITION" not-null="true" />
</class>
</hibernate-mapping>
From the above mentioned config file, we’ll end up generating the domain class, with two member. The name attribute tells the hibernate to generate the getter and setter for that property. So in our exmaple it’ll be like getAuthorName() and getEdition(). And the same for setters also. Now we’ll see one more scenario, every domain object we add may have the primary key associated. Most of the time this key will be autogenerated, the property tag doesn’t have any special attribute to specify this. So we are going to make use of the id tag, which tells the hibernate, this column is the primary key and it’s going to be generated automatically. So i’m going to add some more tags in the above xml.
<?xml version="1.0"?>
<hibernate-mapping package="com.techmaddy.domain">
<class name="com.techmaddy.domain.Book" table="HBD_BOOKS">
	<id name="id" column="EVENT_ID">
		<generator class="native"/>
	</id>
	<property  name="authorName" type="string" column="HBD_AUTHNAME" not-null="true" />
	<property  name="edition" type="string" column="HBD_EDITION" not-null="true" />
</class>
</hibernate-mapping>
The generator creates the primary key value for the persistent class.Native generators provide portability for mapping documents since the framework can determine the generator method supported by the database. Generators using the native class will use identity or sequence columns depending on available database support. If neither method is supported, the native generator falls back to a high/low generator method to create unique primary key values.
The other generators are Assigned and Select. The Assign lets you generate and assign the object ID.Select generator, which retrieves the primary key value by selecting a value from a database trigger. The generator type you choose determines its behavior based on the underlying database.
Hibernate Components & Configuration
Hibernate can be used with Web Application and with an Standalone java applications also. The below image will give you the basic components of Hibernate.
hibernate.cfg.xml & hibernate.properties - These are used to configure the hibernate service. Both these files does the samething.When these two are present in the classpath, then hibernate.cfg.xml will overrides the hibernate.properties file. Basically these files are used to basic connection info, whcih we are going to use it in our application.
Session Factory - SessionFactory allows application to create the Hibernate Sesssion by reading the configuration from hibernate.cfg.xml file.It implements a design pattern, that ensures that only one instance of the session is used per thread.
Session - represents a single-threaded unit of work.Session instances are your primary interface to the Hibernate persistence service.
By using the Hibernate we are going to connect to DB, So the Hibernate should be instructed to pick the drivers and get the connection.The following XML, will gives us the skeleton of the hibernate.cfg.xml
		<hibernate-configuration>
			<session-factory>
				[...Properties for JDBC Connection]
				....
				[...]
				[..Mapping resources]
				....
				[...]
			</session-factory>
		</hibernate-configuration>
For the above hibernate configuration, we’ll try to add the properties for HSQL database. Then sessionfactory tag will becomes the following
			<session-factory>
				<property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
				<property name="connection.url">jdbc:hsqldb:hsql://localhost</property>
				<property name="connection.username">sa</property>
				<property name="connection.password"></property>
				<property name="connection.pool_size">1</property>

				<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
			</session-factory>
This configures the connection properties, along with the SQL Dialect. The SQL dialect tells the hibernate that we are using a specific JDBC drivers. In this example we are going to make use of HSQL DB.The List of dialects are available here.
Now we’ll add the domain object mappings to hibernate.cfg.xml. The following syntax shows how to add an mapping xml for an domain object.
			<mapping resource="com/techmaddy/domain/Book.hbm.xml"/>
Adding this completes the hibernate basic configuration, along with this we may need to add the libraries for the hibernate.Creating the Startups for creating the session factory and helpers we’ll be dicuss in the next article.
Digg This
Reddit This
Stumble Now!
Buzz This
Vote on DZone
Share on Facebook
Bookmark this on Delicious
Kick It on DotNetKicks.com
Shout it
Share on LinkedIn
Bookmark this on Technorati
Post on Twitter
Google Buzz (aka. Google Reader)

Connection Pooling in jBoss with MySQL and Oracle

August 2nd, 2009 kumarasamy No comments
Handling Connection Pooling in Weblogic will be much easier, since WL itself provides the driver classes.But handling in jBoss is little trickier since, we need little diff configurations. Connection pooling in jBoss can be handled through the DataSouce. jBoss can manage the database connections by pooling them and by providing connections to the application when it needs them. Application developers need to specify the configurations about their connection.
OK, Now How will i configure DS for my application in jBoss. The DS in jBoss can be configured by using the config file called ABCApplication-ds.xml. What is this ABCApplication-ds.xml,OK here it goes, jBoss allows you to configure multiple DS’’s and picks automatically when the container loads, Since the -ds.xml is needed in naming our data source config file. So how it’’s loading the file, I don”t have the answer, I think it uses the Annotations/Reflection concept available in java. I”m telling this because the Action Class in Struts 2.0 will be picked on the same manner, i mean all the action class in Struts 2.0 should be the following format *Action.java. Hmm Now we”ll be back to our topic. For example if we are going to configure DS for my Travel application so i”ll be naming it as Travel-ds.xml. OKie, My First step is done, What is my next step. Where will i pick up my template specific to my database vendor i”m using in my application.
Yeahh, I have the answer donworry, This is where i like the Open Source always. Here goes Jboss 4.0.5docsexamplesjca. You have the templete for all the database vendors. For MySQL we have the template called “mysql-ds.xml”, So How i have modified for my application lool @ the following Travel-ds.xml
		<?xml version="1.0" encoding="UTF-8"?>
			<datasources>
				<local-tx-datasource>
					<jndi-name>MySqlDS</jndi-name>
					<connection-url>jdbc:mysql://localhost:3306/Travel</connection-url>				<driver-class>com.mysql.jdbc.Driver</driver-class>
					<user-name>root</user-name>
					<password>myTravelAppDB</password>
					<min-pool-size>10</min-pool-size>
					<max-pool-size>30</max-pool-size>
					<exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter</exception-sorter-class-name>
						<metadata>
							<type-mapping>mySQL</type-mapping>
						</metadata>
					</local-tx-datasource>
			</datasources>
		
OKie, in this MySqlDS is my datasource name. Apart from that i”m specifying some other parameters like driver-class, username, password.
For Oracle we have the template called “oracle-ds.xml”. So Travel-ds.xml will become like the following
			<?xml version="1.0" encoding="UTF-8"?>
				<datasources>
					<local-tx-datasource>
						<jndi-name>OracleDS</jndi-name>
						<connection-url>jdbc:oracle:thin:@localhost:1521:travelsid</connection-url>			<driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
						<user-name>oracleUser</user-name>
						<password>myTravelAppDB</password>
						<min-pool-size>10</min-pool-size>
						<max-pool-size>30</max-pool-size>
						<exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name>	<metadata>
							<type-mapping>Oracle9i</type-mapping>
						</metadata>
					</local-tx-datasource>
				</datasources>
			
As of now, We are done with the configurations, Where will i place this file. First i kept it in WEB-INF folder since we used to do that for most of the time, Where i went wrong. Then where should we place this, Alright, this is my path Jboss 4.0.5serverdefaultdeployTravel-ds.xml. So jBoss automatically picks the file and loads it when it starts-up. jBoss treats this as an seperate application/service.
And now What will i do with the library, OKie go ahead and place it under here Jboss 4.0.5serverdefaultlib. We are down with our donfiguations. I”m ready to write my DAOUtil class. You know what i did, wrongly i kept the JDBC library for MySQL in Jboss 4.0.5/server/default/deploy. But still need to find out the reason, How it’s picking, may be it’’s picking while starting itself. :-) , I read some wher if you keep your file in deploy folder, then jBoss will treat it as a Service/Application, get back here after a week, Will let you know.
			package com.techmaddy;
			/****
			*	@author Kumarasamy Mani<kumarasamy@techmaddy.com>
			****/
			import java.sql.Connection;
			import java.sql.ResultSet;
			import java.sql.SQLException;
			import java.sql.Statement;
			import javax.naming.InitialContext;
			import javax.naming.NamingException;
			import javax.sql.DataSource;

			public class DAOUtil {
				public void excuteQueries() {
					Connection con = null;
					try {
						InitialContext jndiCntx = new InitialContext();
						DataSource ds = (DataSource)jndiCntx.lookup("java:/MySqlDS");
						con = ds.getConnection();
						Statement stmt = con.createStatement();
						ResultSet rs = stmt.executeQuery("select * from book");
						while(rs.next()) {
							System.out.println("n************nnThe title is "+rs.getString("title")+"nn*************n");
						}
					}
					catch(Exception e) {
						e.printStackTrace();
					}
					finally {
						try {
							con.close();
						}
						catch(Exception ex) {
							ex.printStackTrace();
						}
					}
				} //End of excuteQueries
			} //End of DAOUtil
		
We are done with DS implementation in jBoss.
Digg This
Reddit This
Stumble Now!
Buzz This
Vote on DZone
Share on Facebook
Bookmark this on Delicious
Kick It on DotNetKicks.com
Shout it
Share on LinkedIn
Bookmark this on Technorati
Post on Twitter
Google Buzz (aka. Google Reader)
Get Adobe Flash playerPlugin by wpburn.com wordpress themes