Search:

Type: Posts; User: emil1; Keyword(s):

Search: Search took 0.04 seconds.

  1. thats right, store all changes that you make on...

    thats right, store all changes that you make on an object in one transaction. if an exception is thrown, you can rollback your transaction
  2. sure, its friday...dont change anything friday...

    sure, its friday...dont change anything friday for developers :-)
  3. did you try to apply another url pattern. like ...

    did you try to apply another url pattern. like


    <filter-mapping>
    <filter-name>oemInViewFilter</filter-name>
    <url-pattern>/controllers/*</url-pattern>
    </filter-mapping>

    and map your...
  4. double post? :-) Here......

    double post? :-)

    Here...
  5. use on your button tag immediate=true which skips...

    use on your button tag immediate=true which skips amongst other things the validation...(if you are using jsf)



    <h:commandButton immediate="true" ...../>
  6. well you can use input and output objects on...

    well you can use input and output objects on calling subflows..that should solve your problem...

    http://static.springsource.org/spring-webflow/docs/2.0.x/reference/html/ch02s07.html

    In MainFlow...
  7. you would not use pessimstic locking, because...

    you would not use pessimstic locking, because this locks on database level and makes your application slow and unscaleable. if you use optimistic locking, you need to merge your objects, or throw an...
  8. hm jpaFlowExecutionListener handles flows...

    hm jpaFlowExecutionListener handles flows persistence. i think you should configure an extra interceptor.

    If you are using Hibernate you can configure it like this.
    ...
  9. well, try to use opensession in flow with...

    well, try to use opensession in flow with annotating your webflow with <persistence-context/>. the session is kept open until the flow is finished. i would not recommend mixing opensession in view...
  10. if you are using hibernate 4 then you are running...

    if you are using hibernate 4 then you are running out of connections, because it is a spring webflow related bug. maybe thats the cause of your problem. normally all connections are correctly...
  11. Replies
    2
    Views
    410

    basicly you can set

    basicly you can set



    <!-- Configures the Spring Web Flow JSF integration -->
    <faces:flow-builder-services id="flowBuilderServices" development="true" />


    in your config. But i would not...
  12. solved...

    Well i got the solution right now. A bit searching in the forum -.- gave me one hint.

    I created a class like:



    public class LazyInvitationServiceModel extends LazyDataModel<EventInvitation>...
  13. Webflow + Primefaces + LazyDataModel + Isolation State

    Hi there,

    we have a middle sized business application and were running into some problems using the primefaces lazydatamodel. Everything is working fine so far, but we have one flow in which the...
Results 1 to 13 of 13