0
votes
0answers
34 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: ...
2
votes
1answer
66 views

Resize uploaded images for better viewing

I have a profile picture which i stored in database in a byte[] field. What I want do is to create image thumbnails at runtime. Because I have to show images in different sizes on different place on ...
1
vote
0answers
52 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 ...
-4
votes
2answers
111 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
vote
1answer
97 views

Load the resource bundle on start of application in boot strap in grails

I created a new package under src/java in a Grails application for a specific resource bundle which I want to use like src/java/resourcebundle/abc.properties. This is working fine when I use it from ...
-2
votes
1answer
154 views

Grails / Spring Security - Registration email does not unlock account

I am running a site grails site with spring security where users register for an account, then use their email address to log in. In testing, I find when I create an account, I get the verification ...
3
votes
1answer
124 views

Grails 2.1.1 - How to develop a plugin with an AstTransformer?

I want to replace the auto injected log object, which is of type org.apache.commons.logging.Log with an object of type org.slf4j.Logger, so that I can use it properly with Logback. Therefore I need ...
0
votes
1answer
76 views

Jetty stops loading stylesheets from Grails application after a few days of running

I am running Grails on a Jetty server hosted on a Rackspace cloud VM. After deploying and starting the app, everything runs just fine. After several days, the CSS style sheet just stops loading. ...
0
votes
0answers
90 views

On login from CAS, Spring Security redirects to login controller's denied action

I am using Grails 2.04 and CAS for my project. I am also using Spring Security Core and Spring Security Cas plugin. In my application there is a Filter where the values for session are set, i.e a User ...
1
vote
3answers
629 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(); ...
1
vote
1answer
581 views

Grails saves datetime as UTC time, but reads it as local server time?

I have the following line in my Grails application to set the default timezone to UTC: TimeZone.setDefault(TimeZone.getTimeZone("UTC")) I have an Audit entity with a dateCreated field: class Audit ...
0
votes
1answer
464 views

Unclosed GSP expression in grails 2.0.3 although it's closed

I created this grails view (create.gsp) for my event Instance but after calling /event/create i get the following error message (stacktrace): Line | Method ->> 19 | runTask in ...
0
votes
3answers
316 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
0answers
312 views

NPE after upgrade to Grails 2.0

I just upgraded to Grails 2.0 and I'm seeing the error below on run-app. It indicates an NPE on a line that is simply return fileSpec; I've search the interwebs for some time now and I've found ...