Hi all ,
I have a spring mvc application , where I use jsp's for the view. From the jsp's we make rmi calls to rmi server located on a remote machine, which interm runs various shell scripts.
...
Type: Posts; User: anindya.becs; Keyword(s):
Hi all ,
I have a spring mvc application , where I use jsp's for the view. From the jsp's we make rmi calls to rmi server located on a remote machine, which interm runs various shell scripts.
...
Thanks a lot Chudak for the explanation ... All my doubts cleared now :)
Sorry for this dumb question , but can somebody please explain me what this means ->
The Spring Framework does not support propagation of transaction contexts across remote calls
how are you trying to access this bean ? are you looking up the context with the bean name ?
Hi , all.. In web containers spawning of new threads from app code is discouraged ( strongly not recommended )..
We use a spring mvc framework .. can we use TaskExecutor to spawn a number of...
Hi all, can anybody please help me with this.. any suggestions will be of gr8 help ..
Hi ,
I have a controller which returns an excel view as follows. Problem is when I access the controller it says 'File Error :data may been lost'. I must be doing something silly here. Please help...
Not sure if I understand this correctly.. but isn't the annotated controllers taking away the beauty and the convenience of springs a bit.. say currently for a support person to know any URL and...
Hi all.. just thinking is it a good idea to have my own MailSenderClass that extends JavaMailSenderImpl and overrides the doSend method something like this ..
Transport transport =...
Hi,
We have been using Javamail via spring by configuring the following bean ->
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host"...
Hi all . I can see a lot of views to this thread but no response.. please can anybody respond to this.. any suggestions/advice will be of great ..
Can anybody please help me with this .. As per this blog it clearly states the flaws of using jmstemplate - http://radio.weblogs.com/0112098/2005/11/23.html#a543.. we are experiencing the same in our...
Hi all,
From the forums it looks like Jencks is the preferred method of JMS connection pooling. ( if you are not using a j2ee server which provides the same ).
However the Jencks website look...
Not sure if this helps.. But there are really nice timer API's in java. A goole search will return you many results for this. One such use of them is making timed caches ( which refreshes at a...
try something like this ..
public class YourServlet implements Controller
{
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception ...
hi if I go by the blog (http://claymitchell.net/2008/02/11/spring-framework-annotation-sessionattribute-can-be-confusing/) looks like using annotation is simply another way of declaring that the...
I got kind of interested in this topic and did a google o it .. And this is what I found out ->
http://claymitchell.net/2008/02/11/spring-framework-annotation-sessionattribute-can-be-confusing/
jwenting /mpr ,
A big thanks to both of you for helping me out with this. I went ahead with the referenceData implementation as it is getting called after the formbackingobject method gets called,...
Wow.. Thnx a ton for this. However this method will get called for form submission as well as for a new form. Now in case I have onSubmit also overridden in my controller what will the flow for form...
Hi all,
I am a spring newbie. I am using SimpleFormController as the controller for my spring web pages. However I am facing an issue where by our page is invoked from a source with the...