Shiwakant Bharti

Greenhorn
+ Follow
since Mar 22, 2010
Shiwakant likes ...
Eclipse IDE Firefox Browser Java
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Shiwakant Bharti

Basically I too have a requirement for Bi-directional Hash Map. One of the use case is we have is currently in our system one kind of naming say "A" namings, but some clients are interested in another naming say "B". Now for View Screens for another clients we need to map from schema(set) A to B . Alternatively if there is Data Entry Screen then in that case we need to map from B to A so the underlying system is unchanged.

Hopefully this should help. Thanks
12 years ago
In the web.xml file, remove the load on startup entry.
<load-on-startup>1</load-on-startup>

web.xml
---------------------------------------------------------------------------------------------------
<servlet>
<servlet-name>springapp2</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup> <-- remove this line.
</servlet>
---------------------------------------------------------------------------------------------------
After removing the same you. Restart the tomcat and run the application from any web exlplorer.
There you will find the relevant error of Class not found or something.
Copy all the relevant classes in the lib folder from the Springs and it should be resolved.

If not yet done contact me.