0
votes
1answer
42 views
How to obtain the current language in a controller?
Here is my locale configuration
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" ...
0
votes
0answers
46 views
Hibernate @Valid and Spring MVC
Before asking here, I googled and search here a lot, find a usefull content, but I could not solve my problem.
I´m studing the use of Spring MVC and Hibernate Validator with i18n support. My problem ...
0
votes
1answer
17 views
No bean named 'org.sakaiproject.logic.SakaiProxy' is defined
I'm new to sakai development and i choose to use spring mvc. the tool is building fine but i'm getting No bean named 'org.sakaiproject.logic.SakaiProxy' is defined error
...
1
vote
1answer
48 views
Spring Data REST PUT Method Not Allowed
I recently implemented Spring Data REST (http://www.springsource.org/spring-data/rest) in order to expose CRUD functionality through a REST interface automatically.
GET and POST both work as ...
0
votes
2answers
28 views
spring secuirty anonymous user and authenticated user with spring security
Hi am new to spring security.
i had tried with anonymous user for access the application.
but now i want to implement both anonymous user and authenticated user access the application .can any one ...
1
vote
0answers
32 views
Spring MVC - Mapping one error to multiple Fields
In my bean I have a list
List<SomeClass> values = new ArrayList<SomeClass>();
SomeClass{
int a;
int b;
int c;
}
My validation code -
int i =0
for(SomeClass entry: values){
...
0
votes
1answer
43 views
run Spring 3 application on Glassfish 4
I try to run my Spring MVC application (that works nice on tomcat 7.0.41) on Glassfish 4 and something goes wrong.
I'm very newbie on Glassfish, so I simply use IntelliJ IDEA run configuration for ...
1
vote
1answer
21 views
How to use @RequestBody with a JSONP request?
I am trying to perform an ajax request using the jsonp data type due to cross domain issues in a clustered environment.
I can make jsonp requests to methods mapped with no @RequestBody parameters, ...
1
vote
0answers
18 views
Upload blobs to server side disk using Java Spring, which are sent using XMLHttpRequest Formdata
My form is sending a video and audio blobs as a POST request using XMLHttpRequest
At server side Spring controller -- I would like to retrieve the HTTP request and pass those two blobs and save it to ...
1
vote
1answer
69 views
how to pass list from javascript to spring controller
I have issue of how can javaScript can pass two sepparate lists to spring controller. On my freeMarker template I made option to change set of two lists.
This is render of two lists:
EDITED: I found ...
1
vote
1answer
76 views
post multiple form records in spring
I am quite new to spring framework and I'm stuck with the following issues:
I am trying to insert multiple records on a single post request using Spring MVC 3.0
I successfully bound the List object ...
0
votes
0answers
28 views
Spring MVC 3 localeChangeInterceptor
I want to add Internationalization to my Spring MVC application. I know it can be a copy question but I have tried all solutions from both stackoverflow and google but still could not get working. I ...
0
votes
0answers
17 views
Return value from Button-click in view-state in Java
I'm developing an webapp using mvc and webflow in Java.
I have an Flow which contains a view-state whose view (using JSP-Pages) contains a dynamically generated table.
Every row in this table has a ...
0
votes
1answer
22 views
I can't get cross domain ajax working with Weblogic/Spring 3
I am having trouble trying to get cross-domain ajax request working and despite the many solutions I have found on Stack Overflow I am unable to get it working.
$.ajax({
url : ...
0
votes
1answer
29 views
update validated value from a record
I have a real problem but simple,really , i have an edit form that edits a record of a table, i have a value in it that it has to be unique ex:username,i using jquery validation plugin to validate, so ...