Tagged Questions
0
votes
2answers
34 views
Testing grails controller that has a bean from src/groovy
I have a class in src/groovy
class Something {
def foo
}
this is in resources.groovy
beans = {
mySomething(Something)
}
In my Controller I use this :
class MyController {
def ...
0
votes
2answers
52 views
How can I use map in this kind of situation in grails?
I need to display server info that are running up on ec2. I have managed to display them as a json, but now i only need to display certain fields. The following shows how I am displaying the ...
0
votes
1answer
26 views
Query MongoDB between two dates groovy
I'm trying to get all documents between two dates using groovy. I've tried several approaches and haven't been successful. Most lately I've tried the approach listed here Java/MongoDB query by date
...
0
votes
1answer
37 views
Testing action with spock in Grails
I have an action that I would like to test for when content-type is application/json
My action looks like this:
def save () {
request.withFormat {
json {
def colorInstance = new ...
-1
votes
2answers
39 views
What kind of collection to use in grails controller?
I have data being pulled out from the web. I have managed to put the fields I need in variables. How would I put them in a collection? Should I use expandos? I do not have model class. I am thinking ...
0
votes
1answer
41 views
Formatting Time
This may seem like an extremely basic question but it has been eluding me for quite some time. I am trying to setup, in my controller, a way to display the time for a specific day based on that time. ...
0
votes
1answer
25 views
Is it possible to change table row colour if it contains a certain value in a gsp?
I have a table in a gsp containing 10 deiiferent values :
<table class="table table-striped">
<tr>
<th scope="row">Name:</th>
<td>
${person.name}
...
0
votes
0answers
52 views
Grails org.hibernate.AssertionFailure
I have a big problem:
private void sortCompetitionTable(Round round) {
// now sort the table entries and set the table ranks
def round_ = Round.get(round.id)
def ...
0
votes
1answer
16 views
MissingMethodException after upgrading to Grails 2.2
After upgrading to Grails 2.2, I get this exception
Class: groovy.lang.MissingMethodException
Message:
No signature of method: static org.codehaus.groovy.runtime.InvokerHelper.getVersion() is ...
0
votes
1answer
28 views
Generate an Audio waveform in Groovy
Is there a way to generate an audio waveform using Groovy? or are there any third party libraries that allows you to generate audio waveforms using groovy.
1
vote
1answer
38 views
Groovy HTTPBuilder POST: missing method(s)
I'm laying the groundwork for a very basic Grails app that integrates with Last.fm. I'm stuck on the user authentication where I get a session key. From the documentation, it sounds like a very ...
1
vote
2answers
63 views
XML Parsing with same element tags but unique data
I am parsing xml that has many of the same tag. Inside the tag there is a name of a value and then the value. My issue is is that I need to separate those values.
This is an example of the xml I have ...
0
votes
1answer
35 views
grails, unit test mock domain with assigned id
I am using assigned id in my domain
class Book {
Integer id
String name
static mapping = {
id generator: 'assigned'
}
}
so to add a new book:
def book = new Book([name: "The ...
0
votes
1answer
32 views
XmlSlurper parsing a query result
I have a query that bring back a cell in my table the has all xml in it. I have it so I can spit out what is in the cell without any delimiters. Now i need to actually take each individual element and ...
1
vote
2answers
32 views
How do I run ant from within the _Events.groovy script using the AntBuilder?
I am trying to automate a build process that involves looping over a few directories and running "ant all" on all of them. All of them have a a simple build.xml.
I can do this via a shell script but ...
-1
votes
2answers
50 views
Grails parsing date
I have a date value as Fri Feb 15 19:43:05 EST 2013
I could convert it into 2013-02-15 07:43:05 as String.
Now i need to get the date object of this String. I tried using simpleDateFormat in ...
0
votes
1answer
47 views
Grails Project DTOs in Java
In Grails there is a plug-in compile ":dto:0.2.4" to transfer Domain objects to DTOs. When using that plug-in the DTOs are created as Java classes.
For an example if there is Domain Class like ...
1
vote
0answers
43 views
JasperReports for grails: Using HashMap as Model?
Imagine I have two classes in Groovy that look like that:
class Person {
int id;
String name;
}
class Item {
int id;
int price;
}
Now it would be simple to create a JasperReport listing ...
-2
votes
0answers
58 views
How to override method/property of a grails service
Now i want to call the setter of class AbstractClass at to set my custom value for method k. Is it possible to do. i want to modify this value for all instances.The AnotherService class is available ...
0
votes
0answers
59 views
Grails Restfull Json Problems in Controller
I have a problem with REST json service.I have problems with all REST operations (POST, PUT, DELETE, GET). I need to have IF-else statements in each operation but something is going wrong. For ...
0
votes
1answer
52 views
Calling PLSQL stored proc from Grails service
Need a little help with the closure part of this, and maybe a bit more. I'm trying to call a stored procedure in Oracle 11g from my Grails service.
So far:
import java.sql.*
import groovy.sql.Sql
...
0
votes
3answers
70 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
59 views
Grails data binding to command object with maps - convert key to number
I have a Grails command object with a list of maps. The map key is intended to be a numeric domain object ID.
class MyCommand {
def grid = [].withDefault { [:] }
}
Data binding to the list/map ...
0
votes
4answers
74 views
What would be the return type of this method in groovy?
I have a method such as this:
def getInformation () {
return [true, "reason why"]
}
which I'm using like this
def (isClear, reason) = getInformation()
Is there way to define a return type ...
0
votes
2answers
43 views
Do grails' getter methods return COPIES of attributes objects, or the attributes objects themselves?
For instance:
class Person {
def stuff
}
class Toilet {
public void main(String... args){
Person person = new Person()
person.getStuff() //null, but you get my point
}
}
Does ...
3
votes
1answer
55 views
Controller method not found if called from scaffolding template
I recently started a new Grails project and I'm trying to use the scaffold feature as much as I can. I installed the templates with grails install-templates and modified them so they rely on the ...
0
votes
1answer
58 views
display login error using Ajax and Grails
I'm developing a little application using Grails + Twitter BootStrap for the UI. In my index page, I have a form to login :
<g:form controller="user" action="login" id="form-login">
...
0
votes
1answer
42 views
Grails if exist else within config
Some search results are being persisted to the view through config:
Results:[
[heading:'Id', property:'id'],
[heading:'Title', property:'title'],
[heading:'Status', ...
0
votes
1answer
36 views
How to determine the class of grails domain array field
For example, we have the next classes
class AAA {
String fieldA
}
class BBB {
AAA aaa
}
And now, after I run the:
GrailsClassUtils.getPropertyType(BBB.class, "aaa")
I've got an "AAA" as ...
0
votes
1answer
75 views
Why can't Spock mock Groovy and/or Grails methods with named arguments without explicit maps?
I'm in the process of unit testing some code which uses the Grails link generator to generate, well, links ;-). In the code I'm testing the following statement appears.
...
0
votes
0answers
98 views
Grails integration test for domain class: No signature of method exception
I try to write integration test for domain classes in my project. However each time I run the test I got some errors.
My code is below:
class ProductIntegrationTest extends GroovyTestCase {
...
0
votes
3answers
43 views
Regex to find a substring using regex
I'm using regex with Groovy(Grails) to find a substring which is a combination of capitalized alphabets, underscores and digits only.
The regex
"THIS_WORD" ==~ /([A-Z_0-9]*)/
returns true
(
but ...
0
votes
1answer
47 views
Passing map from controller
I am trying to pass a map that is being created from specific values that have been clicked on and send it to my view page so that it will populate my table with the specific days from the choices I ...
1
vote
0answers
47 views
Auto json binding not correctly done
I have 3 domain classes : Foo, Bar & Com. The structure is :
class Foo {
Bar bar
Com com
}
class Bar {
String name
}
class Com {
String title
}
Assuming that I ...
0
votes
2answers
60 views
Recursive method not working properly in grails/groovy unit test case
MyService.class
public boolean myMethod1() {
boolean success = false
for (1..2) {
success = myMethod2()
}
return success
}
public boolean myMethod2() {
int value = ...
-2
votes
0answers
45 views
Filter 2 object in list grails
i want to filter a object list.
def now = new Date()
def games = Game.withCriteria {
between('date', now, now+7)
gameRoles {
eq("roleType", 1)
...
0
votes
1answer
34 views
Gathering and rendering common data
What is the best / cleanest way to gather common data, such as data for a sidebar. In my application I will only ever have two different sets of data, depending if a User is in a Project or not.
I ...
1
vote
1answer
77 views
Overriding Joda DateTime toString in Groovy
So I'm using the JodaTime plugin in a grails project I'm implementing and I really don't like that it spits out the ISO8601 date format when I do a toString. I've been constantly putting toString and ...
0
votes
1answer
61 views
Mock criteria count api grails/groovy
I have a problem while trying to unit test a service class api
MyService.groovy
public int myMethod() {
def cr = MyDomain.createCriteria()
def myDomainCount = cr.count {
isNull("column1")
...
-3
votes
0answers
41 views
Groovy ws-lite to access NTLM authenticated server [closed]
I am trying to access a SOAP service on a IIS served machine from my grails application using groovy ws-lite.
When I send the SOAP message I always get a HTTPClientException with 401 Unauthorized ...
0
votes
1answer
59 views
Grails Cache Plugin: Cacheable key using only two of three params
With a restful api call such as
myserver/api/mydata?req?%7Bcode%3A%2244%22%2C%20name%3A%22sally%22%2C%20version%3A7%7D
where the parameters passed in are code=44, name=sally, and version=7, and I ...
-5
votes
0answers
62 views
Run Project on Localhost [closed]
I have created a project using Grail, Groovy, Intellij IDEA.
Now I want to run this project in my localhost (Windows environment). When I will just open my PC and write localhost or project-name on ...
-7
votes
0answers
69 views
Run JAVA project in localhost(Windows environment) [closed]
I have created a projects using Grail, Groovy, IntelligIDEA.
Now I want to run this project in my localhost(Windows environment).
When I will just open my PC and write localhost or project-name on ...
2
votes
1answer
56 views
using build-test-data plugin with Grails 2
I'm trying to use the build-test-data plugin (v. 2.0.4) to build test data in a unit test of a Grails 2.1.4 application.
The app has the following domain classes
class Brochure {
static ...
0
votes
1answer
55 views
What is available in the withRest closure?
The REST Client of HTTP Builder has a withRest closure. How can I tell what is available in this closure:
withRest(uri: domainName) { what,parameters,are,available,here ->
}
The source ...
1
vote
1answer
60 views
Grails MissingMethodException trying to do operations over Multiple Datasources project (using Java Entity)
I'm trying to use multiple datasources with Grails 2.2.1, but I ran into some problems accessing datasources others then the default. The issue is observed with POJO (not POGO) files.
The issue is ...
1
vote
1answer
84 views
Grails - override a bean property value in resources.groovy
There's a messageSource bean defined in the Grails i18n plugin defined thusly:
messageSource(PluginAwareResourceBundleMessageSource) {
basenames = baseNames.toArray()
fallbackToSystemLocale = ...
0
votes
0answers
47 views
What technologies are important to learn with Grails? [closed]
I have been reading a lot about Groovy and Grails lately, and the books I'm reading mention things like Spring, Hibernate, JPA, etc. quite a bit. Is it important for a Grails developer (and relative ...
1
vote
1answer
88 views
Where should Grails Command objects be placed in the project structure?
I have a class called LoginCommand in domain/my/package/name
class LoginCommand {
String emailAddress
String password
}
My question is why is a table be auto generated in my database for ...
0
votes
2answers
71 views
Using the Xwiki WYSIWYG editor in Grails .gsp files?
I'm using Grails for one of my projects, and I've got the Xwiki rendering plugin (see http://grails.org/plugin/xwiki-rendering) installed. Now I wonder whether there is any way to use the xWiki ...




