Hello,
It would be great indeed to add Query By Example support directly in Spring Data JPA.
Currently, our QBE approach supports only fields, see for example:...
Type: Posts; User: Nicolas; Keyword(s):
Hello,
It would be great indeed to add Query By Example support directly in Spring Data JPA.
Currently, our QBE approach supports only fields, see for example:...
I have found a solution. I am using SpringWebFlow 2.3.0 and PrimeFaces 3.0.M4.
Here is the ExceptionHandler:
import org.springframework.beans.factory.annotation.Autowired;
import...
I recently figured out how to do it thanks to webflow doc and the example provided.
This solution works with Primefaces 2.2.1 and WebFlow 2.3.0 and is used by springfuse.
Note: in your flow, no...
The link is correct, from there you can generate a full webapp.
You need to undertand how @Transactional work, the best is to read the doc:...
you can achieve this by calling a service method having a @Transactional(readonly = false) annotation....
the method may be empty... the idea is just to call it.
We provide a full example that...
OK thanks.
Is it supported to use Spring Faces in a jsf2 env along with PrimeFaces (using the default dojo modal dialog as currently supported) ?
I was not able to do so.
Thanks for your reply.
1/ In my current app, some of my subflow have their view state popup attribute set to true, and it works like a charm.
It was one of the killer feature that made us choose...
Hello,
Are there any subflow involved ?
If yes, this could be helpfull:
https://jira.springframework.org/browse/SWF-360
Nicolas.
Hello,
I am in the (experimental) process of migrating a SWF/JSF/Richfaces application to SWF/JSF/Primefaces.
I am using Spring 3.0.5, SWF 2.2.1 and Primefaces 2.2.RC2.
It seems pretty...
Just for handy copy/paste here is the FlowHandlerAdapter configuration.
<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerAdapter">
<property name="flowExecutor"...
oops!
I think we both meant that globalOnly="true" shows all messages... instead of showing only global ones...
OK great. It works... I missed the delegate tricks, you rock.
I have also make the resources work.
I am still having issue with interceptors/resources + the way I now map webflow. I used to map...
I just checked.
I have the same issue.
Bingo! popups work with the default AjaxHandler... :)
However, it seems you cannot provide 2 ajax handlers to the flow handler adapter... and I need both ajax handler.
Thanks!
I have tried various settings.
I was not able to make the <mvc:resources ... serve resources at all.
I must be missing something.
Our current conf is quite complete, we are able to :
* serve...
Hi,
Thanks for your quick answer.
Sorry I missed it. However, I have just tried this:
<mvc:resources mapping="/resources/**" location="/, classpath:/META-INF/web-resources/" />
But, my popup...
Hello,
Thank you for providing this great framework. I am eager to upgrade.
Here is a blocking issue I encountered:
My popup views are no longer rendered when upgrading from 2.1.1 to 2.2.0.
I...
Hello Keith,
Thanks for sharing the roadmap.
My team would like to use SpringFramework 3.0 as soon as possible and currently webflow is the only reason that make us stick with 2.5.
So my...
Hello,
I am so glad some other people need that kind of stuff :)
Have you checked my proposed implementation ?
http://jira.springframework.org/browse/SWF-360...
Just to let you know that I submitted to SWF-360 a version of the JpaFlowExecutionListener that propagates the persistence context to the subflow. Any feedback is welcome.
Nicolas.
Hi,
From my understanding of the JpaFlowExecutionListener's code
the persistence context is not propagated to the subflow, even if
the subflow also declares the persistence-context.
So, of...
Hello,
When the number of flow executions reach max-executions, the oldest execution is destroyed as soon as a new execution is created.
I noticed that the FlowExecutionListener instances are...
Must the Entity Manager be Serializable?
This is not a requirement of JPA spec, so I guess we cannot rely on it.
Nicolas.
Hello,
I am using SpringWebFlow 2.0.8 with persistence-context.
I ran into several issues with JPA/Hibernate that I was able to circumvent, but I'd like to make sure I understand how it really...
Hello,
SpringFuse provides such an integration example.
Actually it generates out of a database schema an entire project that uses:
Spring Security but also Hibernate and Spring MVC
You can...