0
votes
0answers
17 views

Spring Converter error

Lets imagine that I have one-to-many assosiation where class User may have one Role (admin etc) but many User(s) may have the same role. Code is as follows: @Entity @Table(name = "Users") public ...
0
votes
1answer
27 views

Referencing a DIV Tag of one JSP from another JSP

I am developing an application in spring. I have two files home.jsp and logs.jsp. When I click on one link present in home.jsp it shows logs.jsp in div tag of home.jsp but I have one button in ...
0
votes
1answer
12 views

colspan like feature for spring form textarea

How can I get colspan like feature in a form:textarea in spring form tag? This is my current code: <td><html:textarea rows="5" cols="60" path="comment" /></td> There are total 5 ...
-1
votes
0answers
38 views

Is There a way to connect to my account which is created in amazon site? [closed]

I have created an account in amazon site and i have done some activities there, like adding products to cart etc.now i need to access that information through web application with my credentials.i ...
0
votes
3answers
39 views

<form:option> default value

I have following spring-mvc code in jsp page <form:select path="role" id="idRole" > <form:option value="">Select a message role</form:option> <form:options ...
-2
votes
0answers
17 views

Accessing amazon's user data [closed]

I want to access amazon's user data like cart information from web application created using java through their credentials. How to achieve this. Please help me out.
1
vote
1answer
35 views

send post request to login from client website to sevice provider web

client website(asp.net) has icons on which onclick event is triggered. provider website(java) onClick, function goTourl(){ window.open(url) } url is something like this: ...
1
vote
1answer
21 views

Is there “best practice” for referencing Spring MVC mappings (annotations) in JSPs

I've got a Spring web application that I've inherited and now I'm extending. I've lived through the hell of massive, sprawling Spring XML files and a refactoring process - time I'll never get back. ...
0
votes
2answers
33 views

reading values from XML and displaying them in JSP

I have some experience with JSF but I want to learn some Spring MVC now. I wish to display the options to the user to change the language my website is displayed in. To accomplish this I want to ...
1
vote
1answer
26 views

Accessing my Spring session from a JSP

So, I'm using Spring, and I have the following in my spring-servlet.xml: <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" ...
0
votes
1answer
23 views

(Spring controller) The requirement sent by the client was syntactically incorrect

I have the following jsp: <form:form method="post" commandName="fare"> <div><fmt:message key="createfares.name" /></div> <div><form:input path="name" ...
0
votes
1answer
27 views

how to get Spring LDAP user details on jsp without using scriplets

I have used LDAP authentication using spring and it is working. Now I want to show the details of authenticated user on jsp page without using scriplets. User details should be picked from http ...
0
votes
1answer
36 views

Retain the value of textbox when an error occurs in spring

I am developing a webapp. In that app i have a page which have three search options based on id. If the ID is wrong i want to retain the id in search textbox and i want to show an error message. I ...
0
votes
2answers
68 views

AJAX fetching data from Spring-MVC Controller

My Controller: @RequestMapping(value = "jobs") public void removeJobs(@RequestParam("username") String username, Model model) { String []jobs = jobsFetcher(username); ...
1
vote
0answers
73 views

NoClassDefFoundError - javax/el/ExpressionFactory - Tomcat 7 and Spring MVC

I am trying to deploy to tomcat 7 a little Spring MVC app, and I am getting the dreaded exception: java.lang.NoClassDefFoundError: javax/el/ExpressionFactory ...
0
votes
1answer
43 views

Spring MVC - Eclipse Warning - Validation Message

I tried looking for an answer, but kept getting false positives since it's a "Validation Message" warning. I have a jsp with this line <a href="login">Member Home</a> which maps to ...
0
votes
1answer
28 views

How to upload List object into Model in Spring?

So, I've got the following method in the Controller: @RequestMapping(value="/modules.htm",method = RequestMethod.GET ) protected String modules(ModelMap model) throws Exception { ...
0
votes
0answers
68 views

Bean property is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?

Ok. I'm new in Spring's MVC world. I've faced with many issues when I've tried run my first web application. But this time I feel helpless. 10:46:53,242 ERROR ...
0
votes
0answers
43 views

remove hazardous character injection in javascript using Spring DWR

How to remove hazardous character injection in javascript using Spring DWR? I am using Spring DWR in javascript for interacting with Database.I have defined a function in DWR for getting data from ...
0
votes
1answer
49 views

Specifying unique content for <head> section using apache tiles

I'm brand new to Tiles so this is probably a very easy question. I've created a web application using Java / Spring 3 / JSPs without the use of tiles and now I'm realizing my life would be much ...
0
votes
3answers
81 views

org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI

Hi i am new Spring Mvc. and i am not unable to solve this problem Dispatcher servlet (servlet-context.xml) <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
0answers
24 views

Weblogic 10.3 issues with spring 3.1.0 jsp compilation

I have spring-webmvc 3.1.0.release version in my web-inf/lib folder of my warfile, but when the app is deployed to weblogic i am getting compilation errors. weblogic is using spring 2.x version which ...
0
votes
1answer
44 views

Spring Setup not working

I cant get Spring-Web to work. My pom.xml has dependencys to spring-web and spring-webmvc. My web.xml has ...
0
votes
1answer
25 views

error in building workspace in Eclipse Helios

I am using Eclipse Helios for my web apps development,whenever i started my eclipse Helios it shows the following error Errors occurred during the build. Errors running builder 'Integrated External ...
0
votes
1answer
28 views

Servlets and Spring Integration

I'm new in JSP and Servlets, web.xml file <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" ...
3
votes
1answer
82 views

Spring ContentNegotiatingViewResolver - How to use bean name for jsp view not full url with path parameters

My servlet-context file has <beans:bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"> <beans:property name="useNotAcceptableStatusCode" ...
-2
votes
0answers
26 views

how can i handle unicode using @RequestParam [closed]

Hi guys I wrote a java code using Spring framework and send my request to the controller like this ...
0
votes
0answers
51 views

How to get control from servlet after generating jasper report

I have exported the pdf file using Spring MVC with jasper report concept. I need to display progress bar When I click on export button until save pop up will come out on browser. Again I need to close ...
1
vote
2answers
45 views

How to get a trivial case of Spring MVC view (JSP) resolving to work?

My app uses Spring MVC (latest; 3.2.2) to create a RESTful API returning JSON, and so far I haven't needed a view layer at all. But now, besides the API, I need a simple utility page (plain dynamic ...
0
votes
1answer
42 views

How to access bean from controller in Spring MVC?

I have bean <bean class="myprogram.FileList"> defined. Now I wish this bean to be accessible from JSP. How to accomplish this? First thought is to access bean somewhere in the controller ...
0
votes
0answers
76 views

Spring MVC, dynamic JSP include and Hibernate

I'm making my first steps in migrating a plain JSP + Hibernate webapp to be Spring MVC based. The JSP pages today (before the migration) contain declarations of jsp:include which are being used to ...
0
votes
1answer
44 views

How to display attributes of an object when onChange on select input occurs using SPring MVC

I am using Spring MVC. I am trying to display a list of "Firm" objects. Firm has different attributes including firmName, state, zipcode etc... The code to display just the firm object (which is the ...
0
votes
1answer
46 views

Display blob on JSP

I have class with fields (string, string, blob). On JSP I want to display this obj in table like: <c:forEach var = "p" items="${products}"> <img src="${p.image}" /> </c:forEach> ...
-1
votes
0answers
80 views

A form with a search filter in jsp using spring mvc?

I am new to spring mvc, I have created a spring project and able to display the list from database into my jsp, I have a search textbox with submit button at the right corner of my jsp, I need to ...
0
votes
1answer
80 views

Spring MVC getting value of element that is not an object property on the server

I have a jsp page which uses spring tag lib. I have elements on he page that is bind to properties of an object. I also have button values that are not bind to the POJO i am trying to get these values ...
0
votes
2answers
107 views

Passing java.util.Map from jsp to servlet

I have some class named Configuration that have some fields of types java.util.List and java.util.Map. public class Configuration { List<String> objects; Map<String, Integer> ...
0
votes
1answer
38 views

Looking for a better way to display count in Spring MVC

Looking for a better way to display count in Spring MVC. You can see from my code below that in my controller I get a list of records and in my request scope I have the list under the name "names" ...
0
votes
1answer
59 views

Steps for Creating a jsp application with SpringHibernate framwork?

I used to hard code my JSP applications and I have never used Spring framework before, I would like to get an overview of how to create a JSP app, I already have spring hibernate set up in eclipse: ...
0
votes
0answers
44 views

redirect muiltiple pages using RESTful web service

Hey guys I have a problem while programming in java and jsp. For jave serverlet side I have programme like this: .... .. @path("/run") public Response RUN(){.. .. . ...
0
votes
1answer
38 views

Spring bind issue

Wondering what's the best way to handle this scenario: I have a Spring bound (via Spring binding) form with first item of the list: myList[0].customerFName myList[0].customerMName ...
0
votes
1answer
203 views

How to get spring mvc controller model key value inside javascript?

I am using a spring mvc controller. Inside controller i am putting some value lets say string inside model. Now i would like to retrive that value or lets just say print that value inside a ...
0
votes
1answer
21 views

Implement multi-item selector in Spring 3 and JSP

I would like to implement in Spring 3 and JSP a UI form like the following (easily implemented with Java Swing): Googling around I've found similar things, but not a complete example that could ...
0
votes
2answers
68 views

I want to change the home page menu depending on the login user. How do i do it in Spring MVC?

I am able to log-in using Spring-MVC. Now i would like to change the menu's depending upon the user who logged in. How do i pass login-username to my home page using spring MVC Controller? So that i ...
0
votes
1answer
112 views

populate values in textbox from database on selected Index changed event of dropdown in jsp hibernate and spring

I have a dropdown. On selecting any value in dropdown iwant to populate values in textbox from database using spring and hibernate and jsp
-2
votes
1answer
60 views

JSF or JSP 2 Tag Files for new project

I have a requirement to amalgamate functionality from some parked Java side-projects into a new application and am trying to make a decision on some of the third-party libraries to use, specifically ...
0
votes
0answers
94 views

Multiple submission in a page using Spring MVC

I am implementing a Web-based Java app using Spring MVC. What I am doing now is to provide a page which allow users to select from a set of radio buttons and export a set of data in CSV by clicking ...
0
votes
1answer
70 views

spring security : logout does not work when having long relative path

In my spring security app, I have my logout button placed with the following code <li><a href="<c:url value="j_spring_security_logout"/>">Log out</a></li> Now when my ...
1
vote
1answer
54 views

How to redirect HTTP Status 405 - Request method 'GET' not supported to another page

I am building an application and I want to do a validation in which when user tries to access a POST method he should be redirected to a new Page. For example when I Login, the username and password ...
0
votes
2answers
145 views

Simple JSP-Spring 3 dropdown list not working

I know this should be pretty easy but I'm stuck after trying several things. I'm only trying to display in my jsp a basic dropdown list. Spring version is 3 so I want everything to work with ...
5
votes
7answers
659 views

How to delete session data at a regular time interval, every hour?

I'm generating random tokens for the reason as mentioned in this question which are placed in a java.util.List and this List is kept in a session scope. After going through some Google search, I ...

1 2 3 4 5 19