0
votes
3answers
71 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
1answer
102 views

Save changes to Property File in Grails

I have a grails application that reads from a property file. I created an administration page, that allows the user to view the settings in this file. I want to allow the user to update the various ...
0
votes
0answers
26 views

Reading multiple URL records using WIZTOOL 3.1

I want to read multiple records from WIZTOOL REST CLIENT. Assume Employee class have empName, empId, department, mobileNumber. I want to add set of these records. Example as Below: ...
0
votes
2answers
69 views

Grails Create Multiple Value Map

I have a list of Clients and each client has one or more Venues. These are two separate Domain classes where Venue has client id I want to create a multiple value MAP which will have Client name as ...
1
vote
0answers
47 views

BeanNameAutoProxyCreator on Grails 2 isn't working

I want use spring and log4jdbc in Grails 2.2.1 to catch the jdbc info, but it isn't working and is returning an error. Here is the log4j config in config.groovy: info ...
0
votes
1answer
120 views

Dependency injection of cxf-bean / client in a grails service doesn't work - maybe because it's configured in my plugins config.groovy?

I'm working on a payment plugin for the grails framework. I'm using a payment provider wich gives me a SOAP API (wsdl) and i need a cxf-client to communicate with the webservice. I installed ...
-4
votes
2answers
102 views

To Learn Groovy. To what extent should i learn java for a good start? [closed]

I learnt C programming from Academics. I thought to learn Groovy & Grails.To what extent should i learn Java? (like basic/advance, structs,jsp,swings,servlets, javabeans,frameworks) to get good ...
-1
votes
1answer
110 views

Unit Test and Integration on Grails 2.1.1 [closed]

I have a large application on groovy at grails framework. Recently I have upgraded my application from 1.3.7 to 2.1.1 I am facing some problems in writing Unit Tests and Integration Tests. I ...
0
votes
2answers
184 views

Grails: Pass Params from Controller to Controller at end of Webflow

Is it possible to pass 'params' in a redirect at the end of a Webflow? Basically the purpose of this variable or param passing from controller to controller is this, I want to have a variable or ...
0
votes
2answers
63 views

grails log4j active logger

Is it possible to activate | deactivate logger through Config.groovy? for ex: log4j = { appenders { file name:'connections', file: '/tmp/connection.log' file name:'view', ...
0
votes
3answers
228 views

log4j : parameter appender file name

I use Grails In my file Config.groovy I create an appender as: log4j = { appenders { file name:'myAppli', file:'/tmp/myAppli.log' } ... } Is it possible to parameter file path of ...
1
vote
1answer
445 views

Incompatible groovy compiler version

I have grails-2.2.0 installed on Mac OS X 10.8.2 (Mountain Lion) and I am using Groovy-Grails-Tool-Suite with grails and Java installed correctly. However, when I create a new Grails Project, I get a ...
0
votes
0answers
26 views

How to count and group by date without time with DATETIME in RDBMS and Grails GORM / Hibernate Criteria? [duplicate]

Possible Duplicate: Grails group by date I've a sale domain class in my grails app. So i've many sales in one mysql table in my project. Every sale has a date (saleDate) with time. Now i ...
-1
votes
1answer
189 views

Parse JSON date

I am using Grails as server and ExtJS as client. Now I need to update a date field of domain with specific date value from JSON. But when I want to update with specific date the error is like this ...
2
votes
1answer
109 views

How can I render a GSP as a String?

For my email newsletter I need to render a GSP (the HTML for the newsletter) as a String, so I can pass it to my email method. I’ve found many solutions here on Stack Overflow, but I don't know which ...
4
votes
2answers
2k views

Grails 2.2.0 Support in Eclipse

I am trying to create a grails 2.2.0 project using eclipse-jee-juno. It gives me an error Groovy compiler level expected by the project does not match workspace compiler level. Project compiler ...
0
votes
0answers
41 views

grails 2 how to use a method of groovy source package util folder from service in grails

I am using grails 2.0.0. I need to access a method in util package under groovy source packages. But the class is being called from service. The problem is the method is not being called. Now how can ...
1
vote
3answers
392 views

Get Plain HTML from HTTP Requests

I'm working on a grails app and for several hours already have been trying to get html code from a request. What I want to do is to get plain html (like in a webPage source, with all tags and stuff), ...
2
votes
1answer
300 views

Override Grails dateCreated and lastUpdated for test data only?

I have several Grails 2.1 domain classes that include dateCreated and lastUpdated fields that GORM manages automatically, eg: class Person { Date dateCreated Date lastUpdated String name ...
2
votes
1answer
138 views

difference between “grails console” and “grails”, then “console”

I just started learning Grails and I'm trying to play around with the database using the grails console, but I notice that there's a difference between running grails console and running grails, then ...
0
votes
1answer
82 views

Grails and Selenium: how to integrate the two?

I'm looking to automate the testing of the UI part of my Grails project using Selenium. A number of options seem to exist: Grails Selenium plugin: doesn't appear to support programmatic test ...
1
vote
1answer
247 views

override render method using groovy 1.8 and above

I am using grails 2.0.1 and overriding render method. i have the following code. grailsApplication.controllerClasses.each { controller -> //keep old render method def ...
1
vote
2answers
50 views

grails: assigning a domain class to another domain class

I have a scenario where users are assigned to team. Different ClientServices are allocated to different teams and we need to assign user Of these teams to clientservice in RoundRobin fashion I was ...
5
votes
1answer
689 views

Grails 2.1: Setting sessionFactory and dataSource from custom Spring configuration

I've got a complex, custom-configured Hibernate setup in Spring (including JPA entities, session factory and data source definitions) that I want to use in Grails 2.1.0. Because of that, I want to ...
1
vote
3answers
563 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
2answers
514 views

Prevent method in Grails Controller from being exposed as action

I am currently reading through and working the examples in Getting Started with Grails, Second Edition by Scott Davis & Jason Rudolph. This book was written using Grails 1.2. They have a ...
0
votes
1answer
86 views

Why is my Groovy object initializer failing to set the property?

I have a Groovy class like so: class Person { String firstName String lastName Status status = StatusEnum.ACTIVE } And I'm creating an instance of it with an object initializer: def ...
4
votes
3answers
239 views

Do I need to commit .groovy and .settings folders to repository

I have a grails application on my local machine and I have created a repository in XP-DEV. I have the folders .groovy and .settings in project root. Do I need to commit those files into version ...
3
votes
1answer
337 views

GORM - add child onto parent and save is giving groovy.lang.MissingMethodException

This is my domain model, a survey has many questions, and each question has many repsonses : class Survey { String name String customerName static hasMany = [questions: SurveyQuestion] ...
0
votes
1answer
66 views

Instantiated a class, but it appears referenced to null

I'm trying to instantiate an object and set a single attribute on it, which comes from a request parameter, like so : println "Question text from the request :" + params.question def question = new ...
0
votes
1answer
331 views

How to read messages from message.properties in config.groovy

I dont want to hardcode the 'training.defaultStartTime' value in config.groovy Instead I have to read it from message.properties, The result will be like this In message.properties ...
2
votes
1answer
675 views

How to initialize the variables of domain class with the properties defined in config.groovy

I have defined a variable in Config.groovy as below environments { development { training.defaultStartTime = "09:00" } production { training.defaultStartTime = "09:00" ...
2
votes
2answers
215 views

Understanding unit Testing in Grails

I'm a grails beginner. and was trying to understand the unit test .. when i create a domain class Author grails automatically creates a test controller AuthorControllerTests for that domain. so . in ...
0
votes
2answers
330 views

Writing Unit Test for saving the model

I am a grails beginner.. and learing to write unit test case I have 2-domain class Employee { String name String department static hasOne =[address: Address] public String ...
1
vote
1answer
177 views

Grails testcase fails

i have a domain class like package trip.side import java.text.SimpleDateFormat class HotelStay { String hotel Date checkIn Date checkOut static constraints = { } String ...
2
votes
3answers
449 views

How to manage development in multiple grails/groovy version?

I have a project which uses groovy 1.7.5 and grails 1.3.4. but my new project yet start which will use latest version of groovy (1.8.6) and grails (2.0.4) i will be working in both project. so how to ...
0
votes
1answer
663 views

Grails 2.0.3 Integration test failing for strange reason(save() on domain model not available for second call to setup method)

I've recently begun playing around with Grails 2.0 in earnest but I've hit a roadblock that's not making much sense to me. I've written a integration test that makes use of the @TestFor annotation ...
2
votes
1answer
293 views

Why can't I get my logger to write to the file appender in Grails? [closed]

I have a controller and a service named ApiController and ApiService.groovy. I have my Config.groovy file setup to write the error and info logs to a file using an appender. When I call ...
0
votes
3answers
308 views

Can i call an controller action with POST-params from another controller as method?

I've a controller and some actions within. Am i able to call these actions as methods from another controller as if i would call this action with post params? I'm using the grails paypal plugin and ...
0
votes
1answer
315 views

meta method inject on Grails Controller

I wrote a plugin to inject a method on all controller, i write this on doWithDynamicMethod {ctx -> } for (classes in ...
1
vote
1answer
418 views

Intellij11 / Grails 2.0.1 Compilation Error “BUG! exception in phase 'semantic analysis'”

I'm upgrading from grails 1.3.7 to 2.0.1 and am seeing an error in Intellij11. The compile/run-app work fine from the command line and running via Intellij produces the below error. Environment: Max ...
0
votes
2answers
889 views

How to send an email in grails

My app wants to send an email using the custom mailers. I went through the doc http://grails.org/Mail+from+Grails which I find pretty incomplete. I followed the steps mentioned in the alternative ...
0
votes
2answers
189 views

Grails 2 - Domain model inheritance causing NO_SUCH_TABLE in DbUnit?

In Grails 1.3.7, I have a domain model like this: abstract class A { Long id String a static constraints = { a(nullable:true) } } class B extends A { static mapping = { ...
1
vote
4answers
282 views

Grails 2 upgrade issues

I'm having trouble with running grails 2 on my Linode (running ubuntu 11.10). I can run 1.3.7 just fine, but when I try to use grails 2 the console doesn't work. I can use grails interactive mode ...
0
votes
1answer
775 views

Issues with submitting form with AJAX in Grails 2.0

In my GSP page, I have this form: <g:form action="ajaxAdd"> <g:textArea id='postContent' name="content" rows="3" cols="50"/><br/> <g:submitToRemote value="Post" ...
5
votes
1answer
2k views

How to run a local plugin in Grails 2.0?

In Grails, there is a variant how to include local plugin from sources. According to docs, one may type in BuildConfig.groovy: // Useful to test plugins you are developing. ...