Mahajan Nikhil

Greenhorn
+ Follow
since Jul 30, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Mahajan Nikhil

Java Timer class is there. But it does not covers all aspects of scheduling. Quartz scheduler is itself a java api for scheduling jobs. With this you can even create triggers for recurring events and many more features are there.
Pass the object of HttpServletRequest in your controller methods along with your model object.

For example,

public String test(Model model, HttpServletRequest request) {

final HttpSession session = request.getSession();

//Your code goes here

}


13 years ago
You need to configure scheduler for this. Try out this.

http://www.quartz-scheduler.org/


Try accessing your element in this way.

document.getElementById("rptType");
Attribute 'colume' is spelled wrong . It should be 'column'. Hence your tag would be

<discriminator colume="PMODE" type="java.lang.String" length="10" />

I hope that solves your prob.