I fixed it this way
Added absolute path to the mysql driver jar in Config.groovy file.
grails.plugin.reveng.jdbcDriverJarPath =...
Type: Posts; User: ahsan_cse2004; Keyword(s):
I fixed it this way
Added absolute path to the mysql driver jar in Config.groovy file.
grails.plugin.reveng.jdbcDriverJarPath =...
Hi,
I am also getting the same exception.
Did you happen to resolve it some how?
Thanks
Hi,
I have a parent child relationship to implement.
public class Campaign {
private List<CampaignField> fields = new ArrayList<CampaignField>();
//.....Some other fields and getter...
Any body got any idea on how to do it?
Thanks
Ahsan
Hi,
I have a page which shows a parent/child relationship on UI. Basically I have a Campaign class which have instances of CampaignField class.
So the structure is like this
class Campaign{...
I found that spring annotation controllers have simplified the integration of binding and validation. Now validation can be done at any stage in controller code, May be this is due to provide the...
Hi,
I am new to spring and currently working on a project where I am working with annotated spring controllers and validators.
I have a jsp form which is used to bind the domain model to the...
I got this resolved.
The problem, as stated in first post, was with @ResponseBody.
When you use @ResponseBody annotation spring just returns null as ModelAndView (see Line 844...
Yeah.
Can you please help me to file an issue with spring Jira. I searched that on net but could not find how to do that. They don't seem to have any register link on their Jira website.
Thanks...
One another interesting thing that I found was if I remove @ResponseBody from both my setupUpdateForm() and updatePublisher(), it works fine somehow. Here is slightly modified code that works...
@msecrist
As I mentioned in the comment itself, annotated getPublisher() method is called only once at the startup of session only. I have verified it from debugging as well. If I remove this...
Hi Marten,
Thanks for quick reply. As suggested by you I changed my method definition to following, but still no luck. :mad:
@RequestMapping(value = PUBLISHER_UPDATE_URL_KEY, method =...
Hi,
I am in a fix working with @SessionAttributes annotation when used with @ResponseBody annotation.
Basically I am writing a controller to edit some tabular data row in a popup window using...