2
votes
0answers
17 views

Jetty Maven plugin reload ignores web.xml listeners

I have a Spring MVC Java web application using 2 Spring contexts. The root application context, loaded via ContextLoaderListener, and the servlet Context. I'm loading the application with the Jetty ...
0
votes
1answer
20 views

Persistance.xml vs DispatcherServlet

I am using JPA 2.0, Hibernate 3 Annotation Version, the problem is that i am confusing in Persistence.xml & DispatcherServlet My persistence.xml file contains: <?xml version="1.0" ...
0
votes
1answer
27 views

How to create a servlet on the fly

For below URL's I receive a 404 error, this is fine since the URL's do not exist. Is it possible to create these servlets while the server is running before the error page is returned ? ...
1
vote
1answer
66 views

Spring Maven - context configuration in resources folder

As I found in other question at stackoverflow, it is better to keep the configuration of spring in src/main/resources folder. However when I use mvn jetty:run it tries to load context configuration ...
0
votes
1answer
20 views

Compression servlet filter that supports minimum object size

I wish to add compression to our spring based web-service (serving both xml and json), I see that there are a number of different gzip compression filters, but not sure which is accepted as the most ...
0
votes
2answers
59 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); ...
0
votes
1answer
105 views

Get data form HTTP POST request with multipart/form-data in Java (Spring)

I want upload file from flash, my raw request (cached with Fiddler): POST /api/v1/exercises/uploadTableImage HTTP/1.1 x-flash-version: 11,2,202,228 Content-Type: multipart/form-data; ...
0
votes
1answer
36 views

Spring ReloadableResourceBundleMessageSource works with Java 6, fails with Java 7

Our declaration: <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basenames"> <list> ...
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" ...
0
votes
1answer
25 views

<import/> statements in Spring MVC

If I have a statement in my servlet.xml like this: <import resource="classes/com/au/curtin/example.xml/> and an example.xml at that directory location that has Spring bean definitions as ...
1
vote
0answers
32 views

How to get access to settings in `web.xml` during the start of a Spring web application? [duplicate]

I have several database connection settings in the web.xml file of my application. <context-param> <param-name>databaseName</param-name> ...
0
votes
3answers
83 views

Spring - Completely modify POST request and pass it to another controller [closed]

I'm building a server which will receive JSON string representing user's credentials on "/login" and return response as JSON string. Clients will send POST requests from mobile and web applications. ...
0
votes
2answers
100 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> ...
2
votes
1answer
382 views

No Spring WebApplicationInitializer types detected on classpath

My Eclipse project is suddenly no longer deploying properly. I can't trace it to any particular change I've made to the environment. I have tested with multiple source-controlled projects and they ...
0
votes
2answers
64 views

Spring MVC outputStream

my problem is that I have a program which does make a file & stream it out to the user & I have two problem: 1) first how do change the file name & type (x.sql) 2) what if there's an ...
-4
votes
1answer
107 views

How to store image in MySql using Java and also using Hibernate [closed]

I Want to store image in MySql using Java and also using Hibernate. Please tell me to store image in MySql using Java and also using Hibernate
1
vote
4answers
126 views

How to perform Spring JDBC connection and retrieve data?

I am creating a Web Application using Java and Spring. I need to connect to MySQL database and retrieve data in Servlet to display in my JSP page. I searched lot and got many examples to connect to ...
0
votes
2answers
110 views

Spring MVC - context file not found

I use Apache Tomcat 7 and it's ON - Spring 3 with all the libraries on the classpath (compile and runtime). that's my web.xml file in /WEB-INF/web.xml: <context-param> ...
1
vote
2answers
139 views

Neither BindingResult nor plain target object for bean name 'contact' available as request attribute

I am trying to create a simple project using spring mvc +maven+ jpa hibernate. My jsp page is : <%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> <%@taglib ...
1
vote
1answer
72 views

Servlet to Spring Servlet: Is it possible to implement GET method using Spring's HttpRequestHandler?

I'm updating a regular Servlet to a Spring kind Servlet. To accomplish this I followed these instructions that say I should implement HttpRequestHandler. That's great and works for my Servlet because ...
0
votes
1answer
58 views

Creating collection fields JSP Java

I am using Spring framework, JSP pages to display and validate form. I am from PHP world where field names like somefield[] is represented by array (ArrayList in Java). I want to grab collection of ...
0
votes
0answers
274 views

Spring3.2 RequestMapping produces = “application/json” not written to HttpServletResponse.ContentType

I'm using Jetty8,the servletResponse implmentation of jetty is org.eclipse.jetty.server.Response,which has a default ContentType "text/html;UTF-8", my request mapping method: @RequestMapping(value = ...
0
votes
1answer
45 views

jMesa Spring sync error when saving worksheet

I'm working with jMesa framework (a useful table rendering API) and I have encountered an error. When working with worksheets that allow the modifications of data on the air by ajax requests, it sends ...
1
vote
0answers
50 views

Configurable App Modules - Servlet 3 - Enabling/Disabling servlets programmatically

I have a number of Servlet modules that I would like to be able to enable/disable based on some external property. I'm using Servlet 3.0, currently all the servlets are setup in web.xml. I know I ...
0
votes
1answer
102 views

Apache Tiles - How to get HTTPServlet Request object in execute method of ViewPreparer

Am using Spring MVC with tiles configuration and loading the Menus using ViewPreparer to load the menus into the application. I want HTTPServlet request object in the execute method of ViewPreparer ...
0
votes
1answer
76 views

Spring redirect after servlet forward not passing model

I have a Portal that combines Spring controllers with a couple of regular servlets. In the screen the user has a list from which he/she selects a credit card in order to see a report of the ...
0
votes
1answer
98 views

Accessing servlet scoped beans from another thread

I am using approach from the "Accessing scoped proxy beans within Threads of" answer. However I am seeing rare deadlocks involving RequestAttributes object. The main reason of the deadlock is between ...
3
votes
2answers
99 views

How to synchronize database access in Spring

I encounter a problem on accessing and updating data on mySQL in Spring framework, and I want to ask everyone the most efficient way to lock a TABLE row. Let's say I have two tables: one records all ...
0
votes
0answers
66 views

Setting real path to MockServletContext

I am trying to stub MockServletConfig and MockServletContext. In my servlet init() method servlet gets the realPath like this: String realPath = servletContext.getRealPath(fileSeperator+"WEB-INF"); ...
1
vote
1answer
170 views

Spring + Jersey + Access-Control-Allow-Origin deployed on AppFog

Im not sure why this error is thrown while making a server call on JQuery using Ajax. My server code is @POST @Path("/update") @Produces({ "application/json "}) public Response update(String json) ...
0
votes
2answers
68 views

Bean Context in Spring

The application works perfectly with the following config files: My Web.XML is as follows <servlet> <servlet-name>mvc-dispatcher</servlet-name> ...
0
votes
1answer
150 views

Call a servlet from a Spring controller

I have a Spring controller (ReportController) and a regular servlet (ReportServlet). I have a form that submits partial information, and the ReportController should fulfill the information before ...
0
votes
1answer
116 views

Using Tomcat server to host android and web application opens too many connections

I have an Web application running on my Tomcat server v7.0. Now I'm creating an android app and it will connect to MySQL database. For this, I'm going to send requests to this server, and this server ...
0
votes
0answers
23 views

Needed to call a method once after application deployment which uses Webservice exposed by the same application in which this method resides

Hi I am newbie to Servlet/JSP/Springs .Wanted to know I have a ear file which I deploy on weblogic server . Now as part of this ear some modules are exposed as webservice. Now I have spring bean in ...
1
vote
1answer
337 views

SEVERE: Servlet threw load() exception javax.servlet.UnavailableException

I am getting the below error while deploying my application in Tomcat 6.0.26 on eclipse Juno. I am using struts for web content and spring for ORM. I have tried cleaning up and building up the ...
1
vote
1answer
243 views

Servlet open PDF in new window

I have a requirement in our application to open PDFs in a new window. The requirement is to open a new window only if the PDF data is available. I am making a service call to get the PDF content as a ...
1
vote
1answer
48 views

I want to use development version of JSP files in Spring project. Is it possible?

In previous question Forsing JBoss AS 7 to use static files from source (development) directory in Spring project I ask for JS/CSS files and after 4 hours of docs reading and experimenting resolve ...
0
votes
1answer
162 views

Spring MVC Validation

I Provide a question in [here] : Spring MVC form validation but unfortunately I was not able to solve the problem completely ! my problem is when I submit a wrong value to form (select element) the ...
1
vote
1answer
302 views

Spring MVC form validation

my problem is that I have a form which has html select element with some choosing option value & I want to validate those value using : org.hibernate.validator.constraints or ...
0
votes
1answer
45 views

Configure error page for @PathVariable type mismatch

Suppose I have a controller: @Controller public class SomeController { @RequestMapping(value = "{id}/object.do") public String showObject(@PathVariable("id") Integer id, ...
3
votes
3answers
471 views

Spring Asynchronous Processing Does not Return To View

I'm using the Spring MVC asyncronous processing but the controller does not return a view on web browser. @RequestMapping(value = "/generateGM", method = RequestMethod.POST) public ...
0
votes
2answers
80 views

Spring url mapping does not work

I have a problem with my url mappings in Spring MVC. My goal is to map a url with this form: "applicationName/app/". Here is my web.xml: <?xml version="1.0" ?> <web-app ...
2
votes
1answer
124 views

Generic Error Page not decorated

I have a generic error page which is not decorated by SiteMesh. May I know what is the reason ? <filter> <display-name>SiteMesh_Filter</display-name> ...
1
vote
1answer
180 views

How to use context-param defined in web.xml in dispatcher servlet?

I have a very small concern, to which I couldn't find an answer even after Googling for quite sometime. How do we use context-param defined in web.xml in the dispatcher servlet? In my web.xml, I ...
2
votes
2answers
140 views

Spring isn't injecting beans, what am I doing wrong?

I'm trying to simply try out Spring, yet I seem to be missing something. It seems to load Spring and the beans just fine, however when it comes to injecting those beans with autowired, it doesn't ...
0
votes
3answers
99 views

Spring MVC HTTP 404 eror

I learning SpringMVC so I am followed Spring 3.0 MVC Series from HERE. As you can see, I completed Part1, Part2, and I am right now on Part3 where I am learning how to handle forms with Spring 3 MVC. ...
0
votes
1answer
190 views

Spring Rest API definition using MultiActionController

I'm working on setting up a REST api using Java/Spring/Maven in a JBoss servlet engine and utilising MultiActionController. What I want to do is to group requests to a Single controller for example: ...
0
votes
0answers
97 views

ServletContext object can not be instantiated & return null

I'm working on a Spring MVC project, my spring-mvc xml file has something like this: <bean id="rmiServerInitializer" class="...Inits" factory-method="initRmiServer" /> and I have a class ...
0
votes
1answer
60 views

Populate spring servlet context on start up

It may be a duplicate question. My question is: I want to read a property from properties file and put that in servlet context as soon as I start my application. Could any one please help me on ...
1
vote
2answers
120 views

Spring MVC - generic HTTP handlers

Have searched around and have not found a conclusive answer to this. I have trying to route all http requests through my dispatcher servlet, and then onto a specific controller. Ultimately I want to ...

1 2 3 4 5 9