1
vote
2answers
14 views
Ascii to Int function in Groovy
Hi,
I'm trying to pass the value "1" into a Grails tag. However, it turns out to be an integer value of 49 - the ascii value for "1". How do I convert this to the proper value in Groovy?
0
votes
1answer
5 views
Error Creating PDF from GMAIL Attachment in groovy
I am trying to download an attachment from GMAIL using the java mail API, this the the code snippet
System.setProperty("mail.mime.base64.ignoreerrors", "true")
if ( mp.getBodyPart(i).disposition == …
2
votes
2answers
40 views
Groovy object array creation question
why does this throw an exception?
messageSource.getMessage('UserService.msg.forgot.unknown', ["test@mail.com"], null)
unless I do this...
def Object[] args = ["test@mail.com"]
…
0
votes
1answer
14 views
When Groovy’s “metaClass” returns null
Hi,
Why is it that just when I need it, Groovy's "metaClass" property returns null. Example:
import net.sf.json.groovy.JsonSlurper
@Grab(group='net.sf.json-lib', module='json-lib', version='2.3', …
2
votes
1answer
51 views
Groovy: Sorting Columns in a view: list
Hi!
I have a Groovy application. I am rendering the view list using the following statement:
render (view: 'list', model:[reportingInstanceList: reportingInstanceList, reportingInstanceTotal: i, …
0
votes
1answer
31 views
Using Groovy MetaClass to overwrite Methods
I have a POJO that uses a service to do something:
public class PlainOldJavaObject {
private IService service;
public String publicMethod(String x) {
return doCallService(x);
}
public String …
0
votes
2answers
43 views
How to execute a Groovy Script from my Grails app?
Well, it seems a simple task but I didn't manage to make it run.
I have a groovy script that runs fine under Windows Vista when calling from prompt:
> cd MY_GAILS_PROJECT_DIR
> groovy cp …
0
votes
1answer
30 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
1answer
59 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
…
0
votes
3answers
32 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
34 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
1answer
42 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 …
1
vote
2answers
45 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 …
2
votes
8answers
200 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
1answer
34 views
How to get all validation Errors from SAX-Parser?
Hello,
i would like to get all validation Errors from the SAX-Parser, but with my snippet i only receive the first. How can i achieve this?
Thank you!
Snippet
def factory = …
