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...
Type: Posts; User: TravisKlotz; Keyword(s):
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...
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"...
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.
Thanks Rossen!
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...
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...
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...
The following setup seems like it should work using SpringEL binding:
public class QuestionConverter implements Converter<Integer, Question> {
....
}
public class Survey {
private...
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...
Try something like:
<end-state id="viewEnd" view="externalRedirect:servletRelative:/path/to/end/page" />
Check out the bottom of:
...
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...
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...
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...
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...