Grails is a web application framework that uses Groovy and Java. The framework is oriented around high-productivity application development, and uses common Java technologies such as Hibernate and Spring.
1
vote
1answer
29 views
Plugin or method to get similar functionality like django-reversion in Grails
Is there any way to get similar functionality like django-reversion for Grails?
I mainly require the following functionality of the django extension on Grails:
Roll back to any point in a model's ...
2
votes
2answers
18 views
How to set fields are not required in mongoDb using Grails 2.2.2
I create my first app in Grails 2.2.2 .. For database i am using MongoDb .. but it gives me an error if all fields are not filled..How to set mongoDb fields allows null
0
votes
0answers
5 views
Quartz/Tomcat 7/ClassNotFoundException
Quartz version is 2.1.7
Only quartz-related jars are the one in the webapp. Tomcat does not have any quartz libs in common/lib.
I am getting a ClassNotFoundException for a quartz class (that is ...
0
votes
0answers
19 views
Grails - How to make ivy-cache folder structure the same as maven repository folder structure?
Is it possible to make ivy-cache folder structure the same as maven's repository folder structure?
I am planning to use the same location (path,folder) as maven repository and ivy-cache.
I'm getting ...
0
votes
1answer
37 views
Grails - Can I use maven repo(.m2) path as ivy-cache path
I find some document Grails 2.1.1
It saying we can customize ivy-cache folder.
I have a doubt, can i specify my maven repo(.m2) path as ivy-cache path.
grails.project.dependency.resolution = {
...
1
vote
3answers
55 views
Grails - How to make grails get latest local jars from maven repository
In my maven repo (.m2). there is one my local jar like sub_app-0.1.jar.
I have same copy of the it in ivy-cache.
I run maven install on sub_app then new sub_app-0.1.jar file created.
After, i run ...
0
votes
3answers
28 views
Creating Lucene Index in a Database - Apache Lucene
I am using grails searchable plugin. It creates index files on a given location. Is there any way in searchable plugin to create Lucene index in a database?
0
votes
1answer
22 views
Detecting XHR CORS request in Grails
I'm attempting some Cross-Origin requests against my Grails (2.0.1) application. I have the grails CORS pluging installed. Using jQuery.
How can I detect an XHR request? Under conventional same ...
0
votes
1answer
31 views
grails select is not rendering value
I want to make a select box in grails. I am using 2.1.0. I have a view page which shows a select box named class. But it does not shows any value. The list I have used in the from attribute of select ...
0
votes
2answers
45 views
grails spring security login is not working
I am using grails 2.1.0. I have installed spring-security-core plugin.
When I create user it is creating it. But when I try to login then it shows:
"Sorry, we were not able to find a user with that ...
0
votes
1answer
30 views
Grails Spring Security Last Request URL when AJAX
I'm recently facing the problem with last request url after login. Normally, everything works properly. But if I proceed following procedure I have troubles:
Open an App in one tab and log in
In ...
0
votes
1answer
36 views
Grails test war creation error
Need your help my dear friend....
I am using Grails 2.1.4 and Maven Integration.
i created pom file for Grails project.
I am running a goal like this from eclipse
mvn -Dgrails.env=test package
I ...
0
votes
1answer
37 views
grails spring security is not working properly
I have installed spring-security-core plugin for my project for login security.After installing it everything works fine such as if account_locked= true it shows the message that account locked, if ...
1
vote
1answer
46 views
How to set default value for Domain Class Values in Grails 2.2?
In my Grails domain class I want to set default values which do persist in the database. I use mysql as database. I tried to do this:
class A {
long someValue = 1
long someOtherValue
...
0
votes
1answer
41 views
Grails: Raw SQL query in the current transaction
I am trying to execute a raw sql query using something similar to
def dataSource;
Sql sql = new Sql(dataSource);
But, it seems that this runs in a separate transaction of its own. It therefore ...
0
votes
0answers
15 views
Grails picking old version jars(previous used) also, in 'test war' creation
I used yesterday itext-2.0.8 and today i changed to itext-2.1.7. even it is picking 2.0.8 into war file also two versions of itext jars are coming in war file. Now, there is no reference in pom or ...
1
vote
3answers
544 views
Mocking Using JMockit
I need to mock a method in a java class that is like this:
public class Helper{
public static message(final String serviceUrl){
HttpClient httpclient = new HttpClient();
...
3
votes
3answers
2k views
How to unit or integration test use of injected messageSource for i18n in Grails 2.0 service
I make use of a message bundle in one of my services in a Grails 2.0 project for internationalized text. The use case is an email subject that is sent via the mail plugin in an asynchronous way, so it ...
0
votes
0answers
30 views
Grails - How to exclude some jars for grails-app(war) package
i tried lot of ways even some unwanted wars are including while maven's grails-app packaging. I need itext-2.0.8, that i added in pom and it coming fine, but below three jars also coming, and one is ...
0
votes
3answers
31 views
In Grails, how do I get a property for a relationship on a Spring Security user?
I'm using Spring Security. Let's say I have a User that belongs to a Store. The Store has a property that determines if it has an online shop or not:
class Store {
...
boolean isOnline
...
1
vote
0answers
29 views
Grails 2 forked mode doesn't deploy my app
I'm trying to use Grails new forked mode. I enabled it in BuildConfig.groovy file using
grails.project.fork.run = true
and now the tomcat server starts in "detached mode" as expected, but my ...
-1
votes
0answers
38 views
create menu and submenu in grails 2.1.0
I want to create a template only with menu and submenu so that I can render it in my view page. but I have no idea how to produce menu and submenu in grails. Can anyone please help me on this ?
0
votes
1answer
22 views
compare string with the retrieved value in grails controller
I am trying to create a login action for login. I am getting the value from database. But the problem is that when I check the value with a string it's doesn't work properly and the else part executed ...
0
votes
1answer
53 views
Grails not picking jars from maven repository based on pom.xml
Please, need help, I am getting some compilation error because of Grails not picking jars from maven repository based on pom.xml file.
My BuildConfig.groovy
grails.project.dependency.resolution = {
...
0
votes
2answers
43 views
How to iterate over object list in reverse order in Grails?
From a list of GORM database objects that are ordered desc in my user domain model I want to order them asc (i.e., in reverse order in the view). For example to get the latest books of a user from the ...
0
votes
3answers
68 views
What is the best way to make Grails domain classes commentable?
I have different classes in my Grails application that a user should create comments for.
E.g., Post, Book, Article
Setting
static hasMany = [comments: Comment]
to each class seems to be a bad ...
0
votes
0answers
19 views
Error creating Job (factory-bean returned null) in Grails quartz plugin
I am using Grails 2.2.2 (GGTS - 3.3.0M1) with Quartz plugin 1.0-RC7.
With the following job, I get an error saying that the job instantiation failed when testing with 'grails run-app'. I see the same ...
1
vote
1answer
46 views
Multiple or many domains with one grails application?
I have one grails application and i want to bind many topleveldomains to it.
So for example: A user of my application can add a domain name to his profile and after that he has to add the IP as ...
1
vote
1answer
34 views
What is the best way to implement self-referenced one-to-many relationships in Grails?
I want to implement a follower following relationship in Grails GORM. One implementation could be:
class User {
String name
}
class Follower {
User user
User follower
}
OR:
class User {
...
-2
votes
1answer
38 views
Grails Export : getOutputStream() has already been called for this response. Stacktrace follows:
Need your help my dear friend. I am using same code for every module(items, products,....) to export pfd. All places working fine, but one place, the pdf file creating and downloading successfully but ...
2
votes
0answers
60 views
Quartz job stops executing on StaleObjectStateException exception
I have a problem with quartz ( plugin :quartz2:2.1.6.2 but I have test even with plugin :quartz:1.0-RC7 but the problem does not change) on my Grails Project ( grails 2.2.1 ).
I have a job like this
...
0
votes
2answers
55 views
Could not run Grails project GGTS
I have a grails project that runs perfectly in the command line. When I try to run it in GGTS with
grails run-app
it runs the first time without any error. Then, I stopped the server and ran it ...
0
votes
1answer
22 views
How to set unique hasMany relations based class properties?
I have two domain classes:
class Book {
String name
static hasMany = [articles: Article]
}
class Article {
String name
static belongsTo = [book: Book]
}
I want to validate that a ...
1
vote
1answer
115 views
How to access EJB services from a grails standalone client
I've been having problems to access to my EJB services from a standalone client i've developed on grails 2.0.3. The EJB services are deployed on a glassfish server (Java). I tested this code on a ...
8
votes
4answers
2k views
In Grails, how do I display validation error messages next to the fields?
The Grails 2.0.4 documentation for validation shows you how to display error messages at the top of the page and how to add a css class to an element if a field is invalid, but it doesn't tell you how ...
0
votes
2answers
33 views
Grails Command Object Not Work on Production Environment
I am new in grails i am using commmand object for login validation.
it work fine in development environment but not work in production environment
def login={LoginCommand loginCommand->
...
0
votes
0answers
10 views
GORM select recent by updatedDate on join table
I'm trying to implement a sql statement via createCriteria and can not find out how to translate. General idea is I am selecting the "most recent articles" based on a max value on one of the inner ...
1
vote
1answer
125 views
Grails 2.2.2 Compilation Errors: ThreadGroupContext beaninfo
I am using Grails 2.2.2 with GGTS 3.3M1. When I run my app (grails run-app) and change something in a groovy file then Grails recompiles the file. During this process the following error output ...
0
votes
2answers
73 views
Check if domain classes hasmany collection contains the subset collection
Hello i'm trying to get list of domain objects if a domain object's hasmany association contains all elements in given list.
class Patient {
static hasMany = [symptoms:Symptom]
}
class Symptom {
}
...
-1
votes
2answers
30 views
Where can I download Grails 2.1.4
It looks simple, but I search for one hour even i am not able to find, so finally came for your help.
I am not able to understand, why grails keeping that much secretly the old versions.
Please help ...
5
votes
4answers
987 views
Grails 2.0 run-app very slow performance
I'm using Grails 2.0. I used to develop under Grails 1.3.7 but when running an application under Grails 2.0 the performance is very slow. A page can take more than 30 seconds to show and it's very ...
0
votes
2answers
65 views
Grails 2.1 dateCreated null intermittently on domain save
tl:dr; This is a bit involved of a problem, any advice is welcome, appreciate reading in advance :)
My coworkers and I have been struggling a bit with an odd behavior in our batch processing ...
2
votes
1answer
70 views
Why doesn't my GORM object save to the database?
Consider the following code:
if (!serpKeyword) {
serpKeyword = new SerpKeyword(
keyword: searchKeyword,
geoKeyword: geoKeyword,
concatenation: concatenation,
...
1
vote
1answer
70 views
Grails error Property [{0}] of class [{1}] cannot be null - on basic grails app
Here is my simple domain class:
package projectmanagement
class Project {
String Name
static constraints = {
}
}
Save Method on Controller(generated using scaffolding):
def save() {
...
-1
votes
0answers
10 views
Grails & JSON task [closed]
I have the following task, I have two questions about it
I'm done with number 1, and 2. I can't understand 3.A
can someone give me an example to understand it more ?
how can i call this method from ...
0
votes
2answers
104 views
grails validate nested command object not working
I'm using grails 2.2.1 and attempting to validate a nested command structure. Here is a simplified version of my command objects:
@Validateable
class SurveyCommand {
SectionCommand useful
...
0
votes
0answers
43 views
Grails 2.2 with maven plugin doesn't produce the “correct” test output results
I am using Grails 2.2 with the maven plugin. In order to integrate the Grails project with maven, I ran the suggested:
grails create-pom <group id>
That produced a default pom that I now use ...
0
votes
1answer
425 views
GRAILS 2.0 Exception :- java.lang.VerifyError: (class: xls/Recruitment, method: initErrors signature: ()V) Unable to pop operand off an empty stack
I am trying to run grails application and I get below exception
SEVERE: Exception sending context initialized event to listener instance of class ...
0
votes
1answer
117 views
No signature of method: save() is applicable for argument types: () values: []
We are trying to upgrade a existing Grails 1.x application from 1.x to 2.x (current using 2.2.1). One unit test is failing and I am stuck. Here is what the test is doing...
Service -
def ...
1
vote
1answer
38 views
CXF write logs in specific file
in my application there are several web services implemented with the help of cxf framework. i want to log the incoming requests of each web service in separate files. e.g.
requests -> ws1 ...



