I have a web flow, in the flow controller, I use withNewSession to prevent the non-serializable exception, however, in the withNewSession block, any call to the service will cause No Connection Specified exception:
The message show here using the TaxonomyService, but if I change to use any other service, it has the same error.
Can anyone explain how to use withNewSession in controller and co-ordinate with services.
I use Grails 1.3.7, webflow 2.0.0.BUILD-SNAPSHOT ( same error in 1.4x build)
Stacktrace follows: org.springframework.webflow.execution.ActionExecutionException: Exception thrown executing org.codehaus.groovy.grails.webflow.engine.builder.ClosureInvokingAction@1c2b27a in state 'persistentTaxonomy' of flow 'product/createProduct' -- action execution attributes were 'map[[empty]]' at java.lang.Thread.run(Thread.java:662) Caused by: org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is java.lang.IllegalArgumentException: No Connection specified at com.grailsrocks.taxonomy.TaxonomyService$$EnhancerByCGLIB$$7c6fda2e.createTaxonomyPath() at com.grailsrocks.taxonomy.TaxonomyService$createTaxonomyPath.call(Unknown Source) at TaxonomyGrailsPlugin$_applyDynamicMethods_closure7_closure12.doCall(TaxonomyGrailsPlugin.groovy:87) at TaxonomyGrailsPlugin$_applyDynamicMethods_closure7_closure12.doCall(TaxonomyGrailsPlugin.groovy) at com.andappshop.domain.ProductController$_persistentProduct_closure31_closure55.doCall(ProductController.groovy:576) at com.andappshop.domain.ProductController$_persistentProduct_closure31.doCall(ProductController.groovy:574) at com.andappshop.domain.ProductController$_persistentProduct_closure31.call(ProductController.groovy) at $Proxy16.doInHibernate(Unknown Source) at com.andappshop.domain.ProductController.persistentProduct(ProductController.groovy:541) at com.andappshop.domain.ProductController$_closure30_closure45_closure52.doCall(ProductController.groovy:520) ... 1 more Caused by: java.lang.IllegalArgumentException: No Connection specified ... 11 more