svs_mohan Have a look here:
http://forum.springsource.org/showthread.php?32367-File-Upload-Progress-Bar&p=211108#post211108
I also had the problem where the bar was stuck at 99%
Hope that...
Type: Posts; User: dawez; Keyword(s):
svs_mohan Have a look here:
http://forum.springsource.org/showthread.php?32367-File-Upload-Progress-Bar&p=211108#post211108
I also had the problem where the bar was stuck at 99%
Hope that...
I forgot to include in my previous code that I am actually storing the bookingForm into a session while going from the POST of the homepage controller to the next page:
...
Hi all,
I am using spring 2.5 and I have a controller defined like:
@Controller
@SessionAttributes("bookingForm")
@RequestMapping("/home.htm")
public class HomePageController {
with two...
Hi sja,
mmh I am still looking for a working solution.
At the moment I have a registration phase that is composed by 3 steps. If you change the locale at step 2,3,4,5 then registration is...
Hi,
please remember to use the code formatting when posting code. It improves readability
the stacktrace identify the problem:
javax.servlet.ServletException: No message found under code...
Hey all,
I added the annotation
@Transactional
to my DWR method et voila working as a charm. Now Read/Write in the dao are using the same hibernate session.
Hope that this will help...
Hi Marteen,
Can you please elaborate on this, I am using the getHibernateTemplate() all over and I am interested to see the advantages of using the directly the SessionFactory.
Do you have any...
Hi all,
I have an exception generate when trying to load/save an object in DWR. I have battling with this problem in the last days.
I am trying to perform a simple read/save of an object using...
Hey,
in JSP EL you can referr to a sigle element in the list by using
${mylist[index]}therefore if you have a nested list you can do something like
${mylist[outerIndex][innerIndex]}Not...
Hey traceon,
The plan is to add more entries at once.
Hi all,
I would like to implement a page in JSP where I have a list of objects that would allow me to add/delete/edit. I managed already to deal with edit & delete. The thing that is still blurry...
updated: fixed by using an binder.registerCustomEditor and a PropertyEditorSupport.
Hey,
if you have a HttpServletRequest request you can try
request.getRemoteAddr().
let me know if this is helping.
Hey,
can u plz post some code ? Would be good to identify the problem.
Hi all,
I have been trying to make the form:checkbox working and I am halfway to success ;). I am using spring MVC 2.5 and I managed to display correctly the checkboxes in the JSP but it seems...
Whoops... why there are 2 messages with this... Please any admin delete the other one .. it is not my intention to flood the board with the same message over and over.
Understood that I cannot use...
Hi all,
I am trying to implement a HandlerInterceptorAdapter in my site. I have a part of the site that is using standard spring mvc controller and another part that is using spring web flow.
I...
Hi all,
I am trying to implement a HandlerInterceptorAdapter in my site. I have a part of the site that is using standard spring mvc controller and another part that is using spring web flow.
I...
I made sense of it by following the message:
http://forum.springsource.org/showthread.php?t=35390
so now I have implemented this:
<bean id="viewResolver"...
Hi
in MVC in JSP pages to retrieve the user set locale I use this:
${pageContext.response.locale}which is giving me the correct user language set
these are the beans that deal with locale:
Hey Cool !
I also had time ago an issue that was working only when debugging in intellij. At the end I managed to understand that the debugger is initializing the classes/object and sometimes you...
HI MartinCZ,
it seems to me that your converter is a bit too short. I am using the following one. Please try something like this.
public class StringToMyDate extends StringToObject {
...
I implemented the suggested piece of HTML for changing the language but all the time I swap, the flow ist starting from the beginning again.
I added this to keep track of the flow position so it...
Thank you for the suggestion, I have something similar in my config.
At the moment I am usign the localeResolver but using the CookieLocaleResolve. I did not tried yet to see if the locale is...
Hi
I managed to fix my issues by adding the language change interceptor in the flowhandler mapping.
Now working like a charm. I post here below the code I implemented in case someone would...