0
votes
1answer
37 views

Grails Hibernate Session or Spring Transaction destroying Domain validation errors

So my problem is that my validation errors are being deleted from my domain object before I can render them on the page. I thought I had fixed this error in the past, but it has crept up on me again. ...
0
votes
0answers
46 views

How do you use the MySQL replication driver in Grails (on Tomcat)?

I have a Grails (2.2.1) app for which I'm trying to configure MySQL replication. These settings work fine via "grails run-app" but fail when run via Tomcat: dataSource { dbCreate = "update" ...
0
votes
0answers
40 views

Spring Security Plugin Authentication Failure Issue

I installed Spring Security Core plugin which provided me a login controller. I then created a user in the BootStrap.groovy def init = { servletContext -> if (User.count() == 0) { def ...
0
votes
1answer
42 views

Grails Mail { Short investigation}

I've just started to investigate grails framework and first task I'm trying to resolve is sending email. Basic tutorial and community answers provided lot of information for quick start, and yes I've ...
1
vote
2answers
59 views

Spring webflow serialization trouble in production

I have a grails app doing some stuff in the right way with webflow. So everything goes right in development mode, i can finish the registration and objects are serialized normally. But then, in ...
0
votes
1answer
40 views

HQL is generating incomplete 'cross join' on executeUpdate

I am working on a grails project. I have following query that I am trying to execute String CHECK_FOR_HIGH_TRADE_VOLUME_QUERY = "Update LocationTrade lt set lt.hasVeryHighVolume=true where ...
0
votes
1answer
54 views

Using Grails for Web Service Client Project

I'm currently researching on Grails, if it would be a good choice to go with a Web Service client project. It is said Grails is highly beneficial for developing Admin Portals and Prototypes. However ...
0
votes
1answer
61 views

Spring Batch multithread throwing java.lang.Thread.State

I have a web application developed using Grails, Spring, Java and Hibernate. It contains a batch job implemented using Spring Batch. When I run the job without multithreading it works fine. As soon ...
0
votes
0answers
39 views

grails,Spring Security Core,QQ(just like facebook)login

I am new to grails and spring security plugin core and I have been in trouble recently.Hope someone can help me ...... My login page has a login form. Now, I want to add a shortcut to login. Click the ...
0
votes
1answer
41 views

Grails Spring security for different form of authentication

I am currently using the grails and Spring security to implement the authenitcation. Not doing much customization , using the out of the box and everything works fine for a user who lands into the ...
1
vote
0answers
52 views

cloud architecture best practice with grails

I'm currently working on setup a cloud architecture based on Grails technology. This my Architecture Diagram (ROA) : In this architecture all apps (mobile apps or Web apps) have the similar behavior ...
0
votes
1answer
50 views

Access Spring beans in GSP without controller

I have Spring beans defined in resources.groovy. And I can access them in controllers. I also have some GSPs in views that do NOT have controllers. I wonder how can I access beans in GSPs just like ...
0
votes
0answers
35 views

Grails - Using @Inject in src/java file

I have a java config file(annotated with @Configuration) present under src/java folder. I am trying to use @Inject annotation in this file. But, a compile error is generated saying java.inject ...
1
vote
1answer
89 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
48 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
42 views

Grails Request Map custom errors

I've got a websoftware done with Grails that uses request maps from Spring Security. I am using them for security reasons, so that the user can't access admin areas but also it's used for our business ...
0
votes
1answer
63 views

Binding Spring Beans to Services in Grails?

How can I bind my list declared in Spring DSL to the parameter of my service? I have the following beans declaration beans = { defaultSkillList = [ { Skill s -> ...
0
votes
0answers
111 views

could not initialize proxy - no Session - with cached plug ing - grails

here another problem with org.hibernate.LazyInitializationException: could not initialize proxy - no Session. I see lots of questions about this issue. The reason I open a new question is that I ...
1
vote
1answer
50 views

Grails property initialization

I'm trying to integrate a legacy java/spring app into my grails app. This code uses a lot of custom properties which don't appear to be available when I wire the legacy app context stuff in. If I ...
0
votes
1answer
52 views

Grails & Spring - in resources.groovy how to setup a list

The question is straight forward, how to create a list of bean in resources.groovy? Something like that doesn't work: beans { listHolder(ListHolder){ items = list(){ ...
0
votes
1answer
103 views

Save changes to Property File in Grails

I have a grails application that reads from a property file. I created an administration page, that allows the user to view the settings in this file. I want to allow the user to update the various ...
1
vote
1answer
91 views

Grails persistence in Spring's “Async” annotated methods not working

I have a problem on persisting Grails domain objects in Spring Async annotated service methods. Here is the simplified code: class DocumentService { @Async def process(Long documentId, ...
0
votes
1answer
107 views

Grails - Transactional Spring noRollbackFor not working

I'm using a grails 1.3.7 and have the following code: Grails service: class MyClass { static transactional = true @Transactional(noRollbackFor = MyException.class) public MyObject ...
0
votes
0answers
71 views

How to set up 'login with Google' option for spring security?

I'm trying to use Google openid for a grails project, but don't know where to go from here. The project is already configured with spring security and I have installed the Spring Security OpenId ...
0
votes
2answers
124 views

No bean named but bean is defined

I'm working on an update version of grail-oauth-plugin that support last spring-oauth My plugin version works good and I have implemented a workin oauth2 server. But now I want to add a custom-grant ...
0
votes
1answer
55 views

Implement OAuth 2.0 limited capability device flow with Spring Oauth

I have successfully implemented OAuth 2.0 in a grails 2.0 app using Spring Security and latest version of Spring Security Oauth . But now I want to add to the standar OAuth 2.0 auth flow another flow ...
0
votes
1answer
90 views

How to make a Spring's custom scope that share information between two or more sessions?

We have an application that contains a chat. We are using the Node.JS's IO Socket to make the push to the client. The client, when authenticated, is connecting to a room with his/her id as identifier ...
0
votes
1answer
56 views

GORMless Grails app fails looking for missing (and unnecessary) transactionManager

My Grails 2.1 app is blowing up on launch, with the BeanCreationException below, when it tries to instatiate a Grails service called ServiceParamService. I'm not surprised it's not finding a ...
0
votes
0answers
64 views

Grails Web Flow - Dynamic Pages

I am currently looking to use Grails Web Flow (with Ajax Flow) and have dynamic stages in the flow, which are pulled from a domain list, is this possible, rather than hard coding page1,page2 etc? Any ...
1
vote
0answers
65 views

Grails never redirect to login page

How to force a user to go to login page if he tries to access protected resource? I am trying to implement ajax-based authentication. Simple logging-in and logging-out procedure seems to work fine, ...
0
votes
0answers
40 views

Jets3t zipfile upload, stream being closed automatically

I am uploading a zipped file through a multipart webform. I am using groovy and grails for the upload but code would look similar in Java(with spring) as well... def processUpload(){ def ...
0
votes
1answer
129 views

Grails with Java,Spring MVC and no database resource

I have a web project running on a machine with no direct access to a database. My goal is to build it using the template offered by Grails (when scaffolding is enabled) but I prefer my code to be in ...
0
votes
0answers
37 views

Grails upload file Exception, caused by springsecurity

I work with grails 1.3.7 and i have a strange bug. This is my code for uploading file: def editAvatar = { def uploadedAvatar = request.getFile("uploadedAvatar"); ...
1
vote
1answer
105 views

@PostConstruct fails silently on a Grails Service

I thought the Spring annotations were supposed to work out of the box in a Grails environment, but I cannot get it to work at all. I also tried the afterProperties method, which did not work either. ...
0
votes
1answer
87 views

ClassNotFound Expection when loading beans in Grails

I have a jar file which has the beans defined in applicationContext.xml. I have added the jar file to the lib directory and also modified my build config to runtime ...
0
votes
1answer
50 views

Grails Intellij resource.groovy errors

I just decided to give a go to Grails and since I use mostly Intellij for Java stuff, I dont want to use GTS, so everything works fine so far with a few small glitches on getting grails working smooth ...
1
vote
1answer
506 views

Groovy/Grails Tool Suite (Eclipse based IDE) has big problems with deadlocks

I'm using GGTS to create some projects in Grails but this IDE is terribly slow. I have two projects in my IDE (sometimes both running) and after small changes GGTS starts to build workspace which ...
0
votes
0answers
93 views

Connect remote systems to a Grails application using websockets? (non-http)

i am totally new to websockets but i am advised to use it as a technology to connect client systems to a running Grails application. Our application clients are unable to use normal http (the ...
0
votes
2answers
261 views

Grails + hibernate + controller sessionFactory null object?

I am new to using hibernate and grails. I have multiple java objects that I need to persist. To learn how it works I'm using a simple example of an employee class. Its in my src/java with the ...
1
vote
1answer
107 views

Why does inheriting from GroovyTestCase cause Spring errors in Grails 2.2?

The integration test classes generated for me by Grails when I created my domain classes do not extend the class GroovyTestCase. However, I have seen it recommended by many authors (here is an example ...
0
votes
1answer
177 views

Grails MySQLIntegrityConstraintViolationException thrown

I created a Grails application and deployed it to a Tomcat server. I have configured the Grails application to use an external MySQL database. After I start the Tomcat server and the application ...
0
votes
1answer
49 views

Rendering UTF-8 as text to a modalbox with jQuery .Post

I'm using the grails framework have have the following action: def showText () { def myInstace = User.get(params.id) def myText = myService.getText(myInstance.id) render (text: myText, ...
0
votes
1answer
56 views

Show Message Without Markup or DOM Changes

I am working through the Grails in Action book and got to the part constraints in Domain Classes to introduce validation. When I go to the "Create" form that is produced from Grails, I just clicked ...
1
vote
1answer
128 views

Grails + Spring Web Flow - Unable to acquire conversation lock (LockTimeoutException)

we've faced a strange behavior in our Grails application which is using Web Flow 2.0.0 plugin (what is basically Spring Web Flow 2.0.8.RELEASE). We sometimes receive LockTimeoutException which is ...
0
votes
1answer
220 views

How do I start my grails app locally?

My developer set up an application on my local machine which is built on the Grails/Spring framework. I accidentally deleted the Unix exe script he gave me to run it locally in my browser and can no ...
9
votes
1answer
99 views

How to dynamically select a service in Grails

From my controller I would like to dynamically select a service based on a parameter. Currently I have a base service and some other services that extent this base service. Based on the parameter I ...
1
vote
1answer
424 views

Grails: initialize a static variable with a value defined in config.groovy

How can I initialize a static variable with a value defined in config.groovy? Currently I have something like this: class ApiService { JSON get(String path) { def http = new ...
0
votes
1answer
157 views

Spring/Grails custom property editors for a specific property of the class

I want to register a custom property editor for one of the properties of a domain class, the class is something like this class Accessory{ String name byte[] image } From the client side i am ...
0
votes
1answer
401 views

Is it ok to use RequestContextHolder.currentRequestAttributes().request in production?

Does RequestContextHolder.currentRequestAttributes().request has any performance impact? I know that this is not good to access request inside service methods but I really need it. So if I call ...
4
votes
1answer
186 views

“Debug symbol information is required (…)” after injecting modified Spring security expression language implementation

I have an example class to test @PreAuthorize annotations, which looks more or less like this one: class BankService { @PreAuthorize("hasCustomRole('ROLE_CUSTOM') or hasRole('ROLE_EXAMPLE')") ...

1 2 3 4 5 7