Search:

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

Search: Search took 0.02 seconds.

  1. DefaultMessageListenerContainer ActiveMq and LocalTransactions

    When working with only local transactions (no XA) via the JmsTransactionManager along with ActiveMQ 5.5 and the DefaultMessageListenerContainer, what is the highest CacheLevel that can be used...
  2. Publishing causes Initialization of all declared exchanges

    I have been building a very contrived example using Spring-AMQP and Spring-Integration-AMQP and have noticed that whenever declaring my exchanges/queues/binding in the application using the "rabbit"...
  3. In general, DDL like CREATE/ALTER/DROP TABLE...

    In general, DDL like CREATE/ALTER/DROP TABLE statements are not transactional, so just rolling back the transaction wont reverse the changes. You will have to do your own cleanup work.
  4. Replies
    6
    Views
    1,261

    Thanks Rossen!

    Thanks Rossen!
  5. Replies
    6
    Views
    1,261

    I assume you meant BindingModel and not...

    I assume you meant BindingModel and not BindStatus.


    I believe lines 271 and 272 explain exactly what the problem is. The "accessor" object is a BeanWrapper, I'm not using a valid BeanWrapper...
  6. Replies
    6
    Views
    1,261

    useSpringBeanBinding is set to false and I can...

    useSpringBeanBinding is set to false and I can still get this issue.

    my stack trace looks like this:


    java.lang.IllegalArgumentException: The field type is required...
  7. Custom View

    I would say used a custom View impl, and then multiple view resolvers, The one you are using now, and then an instance of BeanNameViewResolver. Make sure they are ordered properly, and have your...
  8. Replies
    6
    Views
    1,261

    Issues With SpringEL Binding in 2.1.0

    The following setup seems like it should work using SpringEL binding:



    public class QuestionConverter implements Converter<Integer, Question> {
    ....
    }

    public class Survey {
    private...
  9. It looks like you are putting your transaction on...

    It looks like you are putting your transaction on the "insertData" method. But that appears to be a private method and therefor must be called from inside that instance. Because one method on your...
  10. Try something like:

    Try something like:

    <end-state id="viewEnd" view="externalRedirect:servletRelative:/path/to/end/page" />

    Check out the bottom of:
    ...
  11. Replies
    0
    Views
    451

    Dynamic Binding Definitions

    I'm currently working on an application with a fairly dynamic data model. The main form object contains a Map of Objects with properties I would like to bind to.

    My binding properties look like...
  12. Replies
    0
    Views
    602

    FlowHandlers must be Serializable?

    Do implementations of the FlowHandler interface need to be serializable? The examples in the reference guide do not appear to be serializable, but whenever I start a flow with a FlowHandler I end up...
  13. Replies
    40
    Views
    9,317

    Vadus, I do allow them, but i have them...

    Vadus,

    I do allow them, but i have them moderated so i have to approve them before they are published(i just did for you and kace) I also just updated to entry to point out my assumption that you...
  14. Replies
    40
    Views
    9,317

    I noticed that you have your faces servlet mapped...

    I noticed that you have your faces servlet mapped to .html instead of .xhtml. I would recommend making that switch, but if for some reason ".html" is a requirement i think the trick is to configure...
Results 1 to 14 of 14