Tagged Questions
1
vote
1answer
78 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
45 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 ...
0
votes
1answer
34 views
groovy and spring getting started guide
I am looking to learn to gr1oovy with spring framework to access the database. I googled didn't find getting started code for spring and groovy.
Is there similar code for spring and groovy like below ...
0
votes
1answer
95 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 ...
5
votes
1answer
118 views
How to forward large files with RestTemplate?
I have a web service call through which zip files can be uploaded. The files are then forwarded to another service for storage, unzipping, etc.
For now the file is stored on the file system, then a ...
0
votes
2answers
118 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 ...
1
vote
1answer
69 views
Can I write spring java tests in groovy?
I have a junit test in the spring environment with dependency injection in java.
I'm interested in groovy and would like to write my tests with it.
How would look the following test in groovy?
...
1
vote
1answer
82 views
Groovy based BDD in Spring
we're planing to build a system based on spring and we would like to use a groovy based BDD framework. The system is also OSGi based.
Any suggestion for a good BDD framework which also fit into the ...
0
votes
0answers
62 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 ...
2
votes
1answer
116 views
Spring Inject/AutoWire a Groovy Class that is created at runtime
I have a Spring Controlled Grovoy Script Executor class that executes a Groovy Script.
Something like below
final ClassLoader parent = getClass().getClassLoader();
final GroovyClassLoader ...
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
89 views
I want to start my Spring Application Context from Groovy Script
I have an implemented and running stable application in Java. This java application uses Spring Context and in my other project I have to startup this java application using Groovy Script. But Spring ...
0
votes
1answer
169 views
SWF ignore FacesMessage on evaluate transition redirect to next view without updating form
On transition the flow redirect without rendering the FacesMessage in the current instance of the FacesContext (same issue with the MessageContext)
I checked the presence of FacesMessage in the ...
1
vote
1answer
181 views
Groovy-Spring Integration Issue
We have developed an application using following technologies stack:
Struts 2.1
Springs 3.1
Groovy 1.8
Tomcat 6.0.26 - For deployment
Our requirement is to migrate a specific layer of ...
0
votes
4answers
198 views
Using Groovy command line script to exectue Java Spring Beans how do I stop the NoSuchBeanDefinitionException?
I have written this Groovy script to load and execute some Java Spring Beans:
@GrabResolver(name = 'libs.snapshot', root = 'http://ml1002pc:8081/artifactory/libs-snapshot', m2compatible = 'true')
...
1
vote
1answer
106 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
73 views
Calling non-java transformers in Spring Integration
I am working in a Spring integration project and the flow is simple. I get a message from a messagechannel and forward it to my own custom written router. The router based on the message type and some ...
0
votes
1answer
65 views
Spock-Spring - How to control when the transaction around a data-driven test is being rolled back?
I'm using the Spock testing framework together with the Spock-Spring extension which allows you to use Springs' @Transactional and @Rollback annotations. Given that I got a data driven test like this:
...
-1
votes
1answer
143 views
Extending groovy class causes run time exception when retrieving bean
I am having an issue trying to extend a groovy class. I have extended a groovy class that is loaded from a spring application context file by contructing the file path, registering the bean with ...
1
vote
1answer
397 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 ...
-1
votes
2answers
68 views
Can Groovy coexist with Spring?
I've been reading about Groovy recently and noticed that Groovy was supported by Spring? I'm wondering if they can coexist in the same web application? Possibly use the best of both worlds if one does ...
0
votes
1answer
150 views
Grails / Spring: How do you use importBeans with property a placeHolder in the spring.xml?
In my Config.groovy, I have a variable defined:
bbws.baseUrl = "http://localhost:8080/ballot-builder-ws/"
In my spring/resources.groovy I have the following:
importBeans ...
1
vote
1answer
313 views
get reference to spring bean from class in src/groovy
I'm writing a Grails plugin that defines a Spring bean in the plugin descriptor
def doWithSpring = {
myBean(MyBean)
}
I need to get a reference to this bean from another class in the plugin.
...
5
votes
1answer
685 views
Grails 2.1: Setting sessionFactory and dataSource from custom Spring configuration
I've got a complex, custom-configured Hibernate setup in Spring (including JPA entities, session factory and data source definitions) that I want to use in Grails 2.1.0. Because of that, I want to ...
0
votes
3answers
678 views
Problems getting spring:bind status.errorMessage to populate
I've got a Groovy project using Spring framework and its validators doing sanity-checking on my forms' input values. I would like to have Spring populate error messages next to my input form fields ...
1
vote
0answers
245 views
Inject Grails Service In a JAVA class
I am using Grails 1.3.4 in my project. The problem I am facing is that I am not able to inject a service which I have written in Groovy under service folder in a JAVA class I want. I have followed the ...
0
votes
0answers
117 views
Error persisting groovy loaded entites
I have a problem in persisting groovy loaded entities. From debugging, I found that the session factory is able to load the classes. But it fails when saving the entity with the following error.
...
0
votes
1answer
169 views
Groovy and spring under same transaction
I'm struggling with legacy code. I'm creating unit tests so I've decided to use groovy to fill database with required legacy data. Normally in my code I using ibatis for persistence. I'd like to ...
0
votes
2answers
292 views
Grails: What causes ArrayIndexOutOfBoundsException in NameRegistry.getIdFor?
I get the following stacktrace in a Grails 2.0.4 Application:
java.lang.ArrayIndexOutOfBoundsException: 6170
at com.springsource.loaded.NameRegistry.getIdFor(NameRegistry.java:44)
at ...
0
votes
0answers
248 views
How to rollback transaction in groovy
I can't use @Transactional annotation in my TestCase. I've got workaround - using directly TransactionalManager. Unfortunately when I'm creating Sql object in groovy based on DataSource from ...
1
vote
1answer
168 views
How to get customized “from address” in Grails Email service
I have question regarding Email service "from" address. I want to show a name say XYZ instead of XYZ@abc.com. I tried to have it have a string "XYZ" in from but i was getting a mailsend exception.
...
4
votes
1answer
548 views
Multiple camel route processing same file
I have 10 routes defined with 2 of them listed here. The other 8 are identical but the from endpoint is a different dir. Each route picks up a file that is located in the dir and is processed by one ...
1
vote
0answers
303 views
RestTemplate Uploading File, incorrect Mime-type?
We're trying to do a file upload as part of a REST call using org.springframework.web.client.RestTemplate from the 3.0.5.RELEASE and we're seeing some files, almost all of the Open Office and OOXML ...
0
votes
0answers
97 views
groovy + Spring add list in different order will throw NotWritablePropertyException
I am trying to integrate Groovy with Spring.
In one bean I would need to put in a list as property
However that only work if I define the item in list before the bean definition.
To avoid future ...
9
votes
1answer
264 views
How to select a service implementation in a Grails application?
I have several services implementing a common interface and I want to be able to choose one of them to inject into other services when my application starts up.
I have tried referencing the service ...
0
votes
0answers
111 views
Griffon/Groovy Spring plugin: eager/lazy creation?
in my Griffon project I need to load several beans from different sources (including a jar) and after playing a little bit I realize that beans are created in a lazy mode, no problem with this, so ...
0
votes
1answer
210 views
Modifying a controller response with annotation-based AOP?
I'm trying to add headers to a controller response via AOP, and I'm not sure how to get access to the controller or the controller's response.
How do I do this?
This is my current annotation:
...
2
votes
1answer
1k views
Grails - using Spring el expressions in Spring 3.1's @Cacheable
We're planning to use the Spring 3.1 cache abstraction instead of the Grails Spring cache plugin. I've experimented with it locally, but an issue occurred when using Spring el expressions like
...
0
votes
1answer
252 views
Grails services and Spring task scheduling
I have a Grails 2.0.1 webappp which should run some task each couple of hours. I'm using Spring's integrated task scheduling to make this happen so I don't need yet another plugin.
However, when I'm ...
2
votes
1answer
269 views
Best way to pass objects between controller actions in grails
I want a link to open up another view in my webapp to display information about the specified object.
What is the best way to pass objects between controllers actions in grail?
1
vote
1answer
229 views
Grails: what is the best way to use GORM directly from src/java?
In my grails application I have Java classes (src/java). And I want to have access to my domain classes and use GORM features(like get(), findBy..., save(), delete() and etc.) directly from my Java ...
1
vote
2answers
1k views
Grails 2.0.1 Weird issue
I have resource.groovy
beans = {
jmsConnectionFactory(org.apache.activemq.ActiveMQConnectionFactory) { brokerURL = 'vm://localhost' }
}
and on run it says
Running Grails application
| Error ...
1
vote
1answer
213 views
Grails command object data binding behaviour on different locales
Grails (1.3.7) data binding behaviour differs with locales. It is ok but not works for my case.
class XCommand{
Double value
//this value comes from an external service which has no idea ...
4
votes
2answers
634 views
Grails service transactional behaviour
In a Grails app, the default behaviour of service methods is that they are transactional and the transaction is automatically rolled-back if an unchecked exception is thrown. However, in Groovy one is ...
2
votes
2answers
775 views
Groovy / Hibernate / @Transaction returns No Session found for current thread
I have a Spring/JPA/Groovy/Hibernate stack, (note: not grails), and I'm finding that I'm getting a No session found for current thread when trying to perform some @Transactional work on startup.
I ...
1
vote
0answers
242 views
Java Spring and Groovy app with @Transactional - injection returns “proxy” instead of required type
I have added some groovy files to an existing java + spring project.
The project was working (i.e. past the tests).
I added "@Transactional" to one of the groovy methods and the tests broke.
(In ...
2
votes
1answer
173 views
Using file extension content negotiation with spring security plugin?
I'm trying to use the latest spring security plugin for grails, but I've hit a little bump.
I have a controller with this method:
@Secured(['ROLE_USER'])
def query = {
}
When I hit ...
1
vote
0answers
322 views
GAE throws IllegalStateException: WRITER
I have an GAE + Java + Spring app, with very simple controller:
@RequestMapping(value = ['/_warmup', '/_ah/warmup'])
@ResponseBody
String warmup() {
return 'OK'
}
It just return string, and ...
1
vote
1answer
774 views
How to use Spring DSL in Groovy to inject dependency based on environment (dev, qa, prod)?
We've built a web app in Grails/Groovy. In groovy, we built a pluggable caching component to provide caching of large http response streams in the Grails app. We want to inject the cache ...
0
votes
1answer
351 views
Registering an alternate/mock Service impl at Test time in Grails?
I'm writing functional tests (geb + spock) for a Grails application, and want to have the app resolve a "mock" implementation of a Service when the app loads at test-time.
The 'real' version of the ...


