0
votes
1answer
22 views
Embedding Processing in Java/Groovy
Is there a way to embed seamlessly Processing code into a Groovy application?
If it not exists, is there a way to do it in Java? I mean something to attach a component like a JFrame with the content …
1
vote
2answers
63 views
Groovy bundle for TextMate
Where can I get the Groovy bundle for TextMate? I checked the TextMate subversion repository but it's not there. The Groovy site TextMate page references TextMate's missing Groovy bundle.
1
vote
1answer
47 views
Groovy paginate problem
Hi,
I have an application written in groovy and I am having problems with the pagination of a resulting set.
I have a Controller called ReportingController. This controller has two methods called
…
9
votes
5answers
224 views
+300
Machine learning challenge: diagnosing program in java/groovy (datamining, machine learning)
Hi All!
I'm planning to develop program in Java which will provide diagnosis. The data set is divided into two parts one for training and the other for testing. My program should learn to classify …
0
votes
3answers
30 views
in Grails can you use both sql.newInstance and Domain class calls in the same method?
Can you have code that looks like this?
def methodname ()
{
proc = "sql to call a stored proc"
def conn = Sql.newInstance(DB_CONN, DB_USERNAME, DB_PASSWORD, "org.postgresql.Driver")
def result1 = …
0
votes
2answers
31 views
With groovy.sql.newInstance in grails - who closes the connection and when?
I'm using grails but I have lot's of stored procedures I'm trying to call from groovy.Sql.newInstance...
In all the examples I've found I never see anyone actually calling close on the connection. …
1
vote
2answers
42 views
Extracting a Date from “the meeting is on 12-DEC-2009 at 13:00” with Groovy
As the title states I have a string similar to:
"lorem ispom 12-DEC-2009 fsasdfsd 12:00"
OR
"the meeting is on 12-DEC-2009 at 13:00"
And I need to extract a Date with time from this.
What is an …
0
votes
2answers
204 views
How can create a Junit4 Suite with Groovy?
I have
@RunWith(Suite.class)
@Suite.SuiteClasses( [
First.class,Second.class
])
public class MySuite{
}
But eclipse doesn't give me a "Run As Junit4 Test". All the individual test …
2
votes
8answers
193 views
non java-developer question
Just a basic question about Java (haven't really done anything with it personally yet):
Is it possible to write a Java program that runs in a web browser (via JRE) on the client machine? Is …
0
votes
3answers
34 views
maven dependencies groovy
I'm running a project that has a dependency on groovy 1.7-beta-1. The gmaven plugin uses groovy version 1.6 as a dependency. In my pom, I specify in the dependency management section the grooyv-all …
0
votes
1answer
327 views
Groovy expando metaclass
Hi, I've developed a Class that has some methods that augment Integer, it mainly lets me do this:
def total = 100.dollars + 50.euros
Now I have to extend Integer.metaClass doing something like …
1
vote
4answers
623 views
How does one return from a groovy closure and stop its execution?
I would like to return from a closure, like one would if using a break statement in a loop.
For example:
largeListOfElements.each{ element->
if(element == specificElement){
// do …
1
vote
1answer
35 views
Grails GSP <g:set> tag set as integer?
Using Grails' GSP <g:set> tag, is it possible to specify the type of the variable? I want to declare an integer variable, but <g:set> always declares a sting. For example:
<g:set …
0
votes
3answers
74 views
Groovy csv parser and export to database
How can I parse my CSV file without parsing first line ?
This class work but I don't want to parse the header of my CSV.
import groovy.sql.Sql
class CSVParserService {
boolean transactional = …
0
votes
3answers
225 views
groovy static class
What does the 'static' do in this file, sample.groovy?
static class froob {
}
The groovy code compiles fine with 'static' or without it.
