Based on the Model-View-Controller (MVC) pattern, Spring MVC helps you build web-based applications that are flexible and decoupled from the underlying view technologies.
0
votes
0answers
10 views
How to create request scoped web service port?
I have Spring MVC based web application that calls web service. Web service requires http based authentication for every call.I hold web Service Proxy configuration in applicationContext.xml:
...
0
votes
0answers
12 views
Import and edit excel file in browser
I want to improt an excel file from desktop in the browser and then want to edit that excel in the browser and then save.
Also by clicking on export save that file on desktop.
Here i want to use ...
1
vote
0answers
8 views
spring mvc how to store commonly-used collections
This is an architecture question. I have Spring MVC web application that holds about a dozen collections that are rarely changed but that are often used in many-to-one relationships and for populating ...
0
votes
0answers
5 views
Replacing turbine security with spring security
I have the following scenario. The project needs to be converted incrementally from turbine - torque framework to spring-jpa-hibernate framework. I am looking into options of how I can replace turbine ...
1
vote
0answers
13 views
How to map dynamic url http://127.0.0.1:8080/prj/noticeOpen/2 in Spring MVC controller
Hi I am having hard time with following url:
<a href="/noticeOpen/2">dynamicLink</a>
to map with following controller method:
@RequestMapping(value="/noticeOpen/{quesId}")
public ...
0
votes
1answer
14 views
How to pass String collection from controller to view in Spring MVC
I'm trying to use "Tag-it" jQuery UI plugin with Spring MVC
My controller gets list of available tags from DAL and add it to model as attribute:
@RequestMapping(value = "/", method = ...
-1
votes
0answers
11 views
Spring to fetch item list from other domain
In my session.class page i make an arrayList of course.class. Now these data are fetched till second loop. Now in Class i have made a list of studentsection.class now it does not work when i use ...
1
vote
1answer
7 views
TideSDK with Spring MVC
Just wondering, is it possible to turn spring mvc web development content into a desktop application using TideSDK? Both are using HTML5 as the front-end. Then, as for the back-end process, it should ...
0
votes
0answers
6 views
The prefix tiles for element tiles:useAttribute is not bound ZK Spring MVC and Tiles
I am using ZK with Spring MVC and Tiles and am getting the error
Cause: org.xml.sax.SAXParseException: The prefix "tiles" for element "tiles:useAttribute" is not bound.
I believe I have incorrectly ...
0
votes
1answer
16 views
How to give default date values in requestparam in spring
@RequestMapping(value = "/getSettlements", method = RequestMethod.GET, headers = "Accept=application/json")
public @ResponseBody
Collection<Settlement> getSettlements
...
0
votes
0answers
17 views
Values for th:field attributes in checkbox
I have table with datas from database (insert dynamically). In one column I insert checkbox. Now I want to select one of them and send to next form (I select one product and send properties to another ...
0
votes
0answers
10 views
Multiple sessions for spring based web application
I am developing a spring based saas application, which has microsites with login functionality. Each microsite is embedded as a iframe in different websites.
Now problem is if a user tries to login ...
0
votes
1answer
19 views
Jquery ajax goes to error even though result came
I am using spring MVC and JQuery ajax. In one of my ajax call it returns large amount of data it nearly takes 5 minutes.
In Ajax method shows error even though the response came i checked it through ...
1
vote
0answers
12 views
Spring Security whitelisting approach using annotations and a global denyAll
At the moment I try to figure out how Spring Security evaluates the given URL, expression and annotations. So far it seems like it always checks the entries from security-context.xml first. And if ...
0
votes
1answer
48 views
Spring 3: How to handle session based objects between controllers
I generally use Struts2 but I'm exploring the use of Spring for various reasons, most notably the flexibility in the rest-style url capabilities. I thought I would also try to leverage the scoped ...