How to maintain session in my grails application. Here is my requirement. I have to generate session id (in server side) based on the user-name (which comes from client side while log-in).
first of all: i am not a beginner in grails. I used a one-to-many association many times. Maybe the problem is happening because it\'s not a us开发者_开发技巧ual use.
I am trying to deploy my grails application to Geronimo/Tomcat 7/Glassfish 3.1. None of the servers allow me to add the grails application. I get the error \"There are no resources that can be added o
I\'m using Grails 1.3.7.I\'m having trouble getting Grails to automatically install plugins.I tried just one, \"grails install-plugin quartz 0.4.2\", which fails.How do I adjust my Grails installation
I have been using the Grails database-migration plugin during development of my application, and really like its functionality.(Gr开发者_Go百科ails 1.3.7, database-migration 1.0)
I need to track a M:N relationship with attributes, so I\'m using a link table (following the pattern at Many-to-Many Mapping without Hibernate XML) ... but, I can\'t see how to query that Membership
I was able to successfully get the GWT Atmosphere demo project as well as the Grails atmosphere project up and running. However, when using the Grails backend to power up the GWT Atmosphere client, it
In Grai开发者_StackOverflowls, with DynamicFinder how can we execute a query using ilike along with inList? Or can we use CriteriaBuilder to combine ilike and inList? Thank you!why do you want do comb
Making a simple purchase order application in Grails, wher开发者_如何学Pythone I have Category (eg: TV, Video...), Brand, and Item. A Brand is associated (hasMany) categories, for example Sony makes V
Im trying to create a Domain Class Constructor that inherits another class properties dynamically. But I cannot get it to work properly.