Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. at...

    at org.springframework.webflow.execution.repository.support.CompositeFlowExecutionKey.keyParts(CompositeFlowExecutionKey.java:105)
    at...
  2. Exception Badly formatted flow execution key '[extremely long string of characters]'

    Hello,

    Ever since I upgrade from 1.0 to 2.1, I've see this in our logs. We get invalid flow execution keys like '_c3A0E596F-15E7-58BE-B67B-C3F002F33341_kB550E90D-EA69-0B14-31C5-986E94ABE661' which...
  3. Replies
    0
    Views
    485

    Request and View Scope Questions

    in swf 1.05 i had:





    <view-state id="viewArrayLayout" view="arraylayout">
    <transition on="viewArrayLayoutImg" to="viewModuleLayoutImage">
    <set...
  4. Well for users of toplink essentials (and...

    Well for users of toplink essentials (and presumably eclipselink as well), a work-around seems to be to query the modified object using the toplink hit "toplink.refresh". I'm calling this refresh...
  5. OK, thanks. Do you see anything that's amiss...

    OK, thanks. Do you see anything that's amiss here?



    @Entity(name="Project")
    @Table(name="project")
    public class Project extends PersistentDomainObjectWithMetaData implements...
  6. >You need to remove it from the collection inside...

    >You need to remove it from the collection inside the Project not set the reference to null.

    In ProjectManagerImp#removeDesign, I call it.remove() that removes it from the collection.

    I've...
  7. Thanks for responding so quickly. I removed...

    Thanks for responding so quickly.

    I removed the line:

    persistentDesign.setProject(null);

    This didn't seem to fix the issue.

    Here's the console output:
  8. Entities removed from database after commit still available via query

    Hello,


    here's the set-up:
    * I'm using JPA, Spring's JPA Support Daos, the LocalContainerEntityManagerFactoryBean, transactions are configured via annotations.

    * All daos are wired with with...
  9. Replies
    12
    Views
    17,374

    I would also like to know why it works on the...

    I would also like to know why it works on the interface and not the implementation.
  10. Replies
    3
    Views
    1,018

    Ah ne'er mind. The bean was autoproxying. It was...

    Ah ne'er mind. The bean was autoproxying. It was a totally different issue. thx anyways.
  11. Replies
    3
    Views
    1,018

    Thanks for the response Marten. Everything is in...

    Thanks for the response Marten. Everything is in a single ApplicationContext xml config file. Furthermore, when the controller's handlerequest method is marked with the transactional annotation, it...
  12. Replies
    3
    Views
    1,018

    service class not being autoproxied

    I have a service class called ProjectManagerImp that implements the ProjectManager Interface.

    An instance of ProjectManagerImp is injected into ProjectController




    public class...
  13. Thread: Transactions

    by dmpolvo
    Replies
    4
    Views
    1,089

    Did you figure this out? I'm experiencing the...

    Did you figure this out? I'm experiencing the same problem
  14. Replies
    3
    Views
    6,297

    Nevermind.. this was a result of the hosting...

    Nevermind.. this was a result of the hosting company rewriting the startup script. I eventually gave up on figuring this out myself and sent them a support ticket, and they got it working for me....
  15. Potential changes to Reference

    After playing around with this some more and ready to try something new after 15 hours of reading and rereading the documentation, forums, etc, I decided to deviate from the instructions in the...
  16. Documentation for JPA + Tomcat needs clarification

    One
    Documentation states: "In order to use the custom ClassLoader on:"
    This doesn't make sense, because the word "on" implies that the bulleted list that follows will explain different options for...
  17. Replies
    3
    Views
    6,297

    Thnx. But. The hosting company deleted that file...

    Thnx. But. The hosting company deleted that file and instead has instructions to use "startup.sh". I added that line to "startup.sh" and I still get a warning when I start tomcat that I need to start...
  18. Replies
    3
    Views
    6,297

    How does one start tomcat with spring-agent?

    I know many of you will think this is a stupid question. But how in the world do you start tomcat with a javaagent?

    ./startup.sh -javaagent:path/to/spring-agent.jar ...?

    ./tomcat -javaagent...
  19. Instance being persisted, but no id being generated

    I'm using toplink essentials and using annotations to declare transactions. Where is the best place to start transactions? It seems that some people start the transactions in the Daos, while most...
  20. Replies
    5
    Views
    1,457

    The problem was that the class I was marking as...

    The problem was that the class I was marking as transactional did not have a constructor and could not be autoproxied. I refactored the classes as Marten suggested, swapping out the getInstance...
  21. Replies
    5
    Views
    1,457

    Hmmm... Can I use @transactional on classes that...

    Hmmm... Can I use @transactional on classes that do not have a no-arg constructor? My Daos are singletons that can only be accessed with a getInstance method. Is this why I'm getting the "not...
  22. Replies
    5
    Views
    1,457

    Transactions and Hair Loss

    The @transactional annotation seems to be having no effect

    I am using them on concrete classes
    I am using them on methods that are called externally
    I included the tx:annotation-driven in my...
  23. Replies
    0
    Views
    726

    Accessing Flow Scope

    How in world do you access the flow scope from outside the web flow?

    Here's what I'm trying to do:

    In one of my views, the user will have the option to view a graphical representation of an...
  24. Replies
    3
    Views
    2,293

    Just normal validation errors. But while Spring...

    Just normal validation errors. But while Spring MVC (2.5) puts these in the model as "org.springframework.validation.BindingResult.**," SWF (1.0.5) puts them in the model (and FlashScope) as...
  25. Replies
    3
    Views
    2,293

    Displaying validation errors in jsp

    The Spring hasBindError tag does not appear to work with SWF generated errors because the tag looks for a parameter named "org.springframework.validation.BindingResult.**" in the request, while SWF...
Results 1 to 25 of 27
Page 1 of 2 1 2