0
votes
0answers
49 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
46 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
0answers
106 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 ...
2
votes
1answer
89 views

Can you data-bind a composite id in Grails such that it (or parts of it) becomes updateable?

I am trying to read through the dataBind documentation, but it's not all that clear: http://grails.org/doc/2.1.0/ref/Controllers/bindData.html I have a composite id composed of 4 columns, and I need ...
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 ...
1
vote
2answers
218 views

How can i export my Grails services in jar, and use that jar in some other java application?

I am exporting the class file from grails in java.but it doesn't working for me.is this is possible to do or not?? if yes then how?? Its a simple groovy service file. Bookservice.groovy package ...
0
votes
1answer
267 views

GORM in Griffon

im just trying out griffon, just wanna ask if is it possible to perform GORM in a griffon application? Do I need to install an additional plugin to make it possible? thanks for those who want to help. ...
1
vote
0answers
146 views

Integrate Grails GORM with Spring

I am not able to integrate grail's stand alone GORM with Spring.I am getting following compilation error. Groovy:Unable to run AST transform ...
3
votes
1answer
351 views

Grails 'withTransaction' with alternate dataSource

Trying to figure out how to open a transaction with an alternate dataSource in grails. I have the following dataSources defined... dataSource { dbCreate = "update" url = ...
0
votes
1answer
205 views

grails + singleton service for object saving to database for cloud application

Here I have one service Called 'DataSaveService' which I used for Saving Objects like.. class DataSaveService { static transactional = true def saveObject(object) { if(object != ...
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 ...
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 ...
0
votes
1answer
222 views

Standalone GORM (based on Grails 2.0)

This topic has come up at various times over the years, the most recent solution apparently being the pet clinic sample app: https://github.com/grails-samples/petclinic That was built against Grails ...
0
votes
1answer
348 views

No signature of method: static org.springframework.security.oauth.User.withTransaction()

i have a problem is shown below; groovy.lang.MissingMethodException: No signature of method: static org.springframework.security.oauth.User.withTransaction() is applicable for argument types: ...
2
votes
2answers
258 views

Grails paginate database results on same transaction?

I'd like to be able to paginate my database results with something like the CriteriaBuilder, but I need my results to be consistent as to a single point in time. Is there an easy way to somehow ...
2
votes
3answers
974 views

Grails Spring Security Plugin - ONE-TO-ONE association with User domain

I'm using Spring Security Plugin to manage membership and authentication in my Grails app. I'm trying to associate the User domain class with a Profile domain by a one-to-one association. I added ...
0
votes
1answer
37 views

How to filter a particular class when i have a inheritance?

class A { String name } class B extends A{ } class C extends A{ } class D{ A a } D d = new D(); d.a = new B() D d2 = new D(); d.a = new C() My query : D.createCriteria().list(...){ A{ ...
1
vote
1answer
945 views

Grails domain class initialization

My Grails app has the following Spring bean defined in spring/resources.groovy calendarService(CalendarService) { bean -> bean.initMethod = "init" } This method looks something like: ...