I've run into the very same issue. Has anyone been able to figure this one out?
Thanks,
Sanjiv
Type: Posts; User: sjivan; Keyword(s):
I've run into the very same issue. Has anyone been able to figure this one out?
Thanks,
Sanjiv
I'm just using the non-tags version for now. ie regular 'form' delcaration instead of Spring's form:form tag.
I'd like to set the (IE only) autocomplete attribute on forms to off but the Spring form and input tags are missing this attribute. Can it be added? Or is there a workaround for it?
Thanks,
Sanjiv
David,
I dont follow your comment on limiting application containers that one is able to use when using the Executor? What application container are you referring to? And how is it limiting.
I'm...
I personally think that such assumptions can complicate systems. We're talking about sending of email messages and not execution of a computationally and memory intensive process where moving the...
You don't need JMS to send an email asynchronously. (Infact I'd say that JMS is not appropriate for this use case based on your description). Just send the email in another thread. And if you'd like...
Tom,
Here's how I did this :
Lingo (Spring Remoting) : Passing client credentials to the server
http://www.jroller.com/page/sjivan?entry=lingo_spring_remoting_passing_client
You may also be...
fyi you can connect to MS Access without creating a DNS :
http://jroller.com/page/sjivan?entry=dsn_less_jdbc_connection_to
Hotspot must have inlined the code from getSynchronizations into registerSynchronization.
Collections.sort(synchs, synchronizationComparator); is being called so the question is why is this call...
I'm on Spring 1.2 for this project. Are you aware of any performance improvements related to this in Spring 2.x?
Thanks,
Sanjiv
Yes, I am using a connection pool. In this case where I'm running within a Hibernate transaction, getConnection() is just returning the active connection for that transaction and not a new connection...
I'm using Springs JdbcTemplate to carry out updates / inserts of several rows and when profiling the operation I noticed that the bottleneck was not the query itself but the call to...
Here's how I did it : http://jroller.com/page/sjivan?entry=embedding_jetty_in_a_spring
Sanjiv
I like Spring MVC but an important piece missing is a MultiActionFormController, which is almost a requirement for complex pages. There's been an issue open for a long time :...
Are you closing the Hibernate sessions?
Try getting a thread dump when your server hangs (Crtl + Break on windows). Then analyze the thread dump to narrow down where the app is hanging.
Sanjiv
Have you taken a look at Lingo Spring remoting. Its very efficient and supports asynchronous calls and remote callbacks.
Take a look at :
http://lingo.codehaus.org/...
Based on the stacktrace it like some of the Websphere JMS code is not threadsafe.
Sanjiv
You need to add the jms jar in your weblogic boot classpath (by editing startWeblogic.cmd).
Oliver,
Can you try upgrading to Lingo 1.2.1. There was an issue with earlier versions that cased high CPU usage under certain circumstances. (See http://jira.codehaus.org/browse/LINGO-26).
Sanjiv
Have you tried running the sample app on my blog? The methods meant to be asynchronous (those with return type void and which dont throw exceptions) are invoked asynchronously. Can you post your code...
I wrote a blog entry on how to create an Ajax based login using Acegi. Here's the URL http://jroller.com/page/sjivan?entry=ajax_based_login_using_aceci
Let me know if there's interest in...
MultiAction style controllers are very useful for form submits. The real issue that SpringMVC lacks a much needed MultiActionFormController.
...
Try using the same version of the Spring jars on your second machine.
Sanjiv
I have written a AsyncProxyFactoryBean (much like org.springframework.remoting.rmi.RmiProxyFactoryBean) implementation of Spring Remoting which allows asynchronous in-vm processing of method calls....