0
votes
2answers
24 views
Found shared references to a collection org.hibernate.HibernateException
Hi,
I got this error message :
error: Found shared references to a collection: Person.relatedPersons
when I tried to save addToRelatedPersons(anotherPerson) :
person.addToRelate …
5
votes
7answers
121 views
Loading and analyzing massive amounts of data
So for some research work, I need to analyze a ton of raw movement data (currently almost a gig of data, and growing) and spit out quantitative information and plots.
I wrote most …
0
votes
0answers
16 views
How to mock abstract class with static members in Grails?
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined. The problem is that MockFor and StubFor don’t give you an option for adding static …
0
votes
3answers
41 views
Can Groovy be a client to JAX-RPC-style web service?
Apparently, Groovy easily consumes web services. Can it consume a web service that needs JAX-RPC instead of JAX-WS? Should I use an older version of Groovy or its libraries to do …
0
votes
1answer
22 views
Using XmlSlurper: How to select sub-elements while iterating over a GPathResult
I am writing an HTML parser, which uses TagSoup to pass a well-formed structure to XMLSlurper.
Here's the generalised code:
def htmlText = """
<html>
<body>
<div i …
0
votes
1answer
15 views
Groovy FindAll statement for finding values that don’t exist.
Hi.
I am trying to construct a Groovy statement to find values that don't exist in a pre-populated list.
I'm using SQL and think I want to do something like :
myList = [a, b …
1
vote
2answers
32 views
Using groovy AST Transform for modifying java
Would it be possible to use groovy ast transformations code to manipulate java classes?
If yes, please give an example.
If no, please specify why.
1
vote
3answers
43 views
“Overloading” standard GORM CRUD methods
Wanna do the following:
BootStrap {
def init = {servletContext ->
........
MyDomainClass.metaClass.save = {->
delegate.extraSave()
//////// how to call original …
2
votes
2answers
74 views
utf-8 decoding in java
I'm trying to pass parameters from a PHP middle tier to a java backend that understands J2EE. I'm writing the controller code in Groovy. In there, I'm trying to decode some paramet …
0
votes
1answer
38 views
Create page result list in grails
Probably a stupid question, but I tried looking this up without much success.
In a Grails app, I have a service with several methods that basically search for certain data using t …
2
votes
6answers
213 views
recommendation for choosing a new web development stack
I work in a medium to small team ( 10 people ) developing and supporting several web enterprise applications.
We have a dozen of them built with a house-made framework with asp-c …
0
votes
0answers
17 views
cobertura doesn’t run groovy tests with Hudson
I'm using Hudson to run my continuous build and I found that when I converted some of my unit tests to Groovy that Cobertura stops running them and reporting code coverage. They ar …
2
votes
1answer
56 views
what does final mean in Groovy
Hi,
If you run the following code in the Groovy console it prints "8"
class F {
private final Integer val = 2
def set(v) {val = v}
def print() {println val}
}
def f = n …
0
votes
1answer
31 views
How to add a new closure to a class in groovy.
From Snipplr
Ok here is the script code, in the comments is the question and the exception thrown
class Class1 {
def closure = {
println this.class.name
print …
1
vote
1answer
36 views
Using Grails GORM standalone
I'm currently wondering how it is possible to use the Groovy ORM Layer from Grails standalone outside of the Grails Framework. There is a Documentation Entry for doing so, but the …
