Tagged Questions
1
vote
0answers
17 views
How to add compatible depencencies for Hibernate 4 Spring 3 and Spring security 3
I have difficulties finding right version of libraries , I'm using Hibernate4 and spring 3 with spring security.
I'h changed versions several times to match them,but I get several error, hibernate4 ...
0
votes
1answer
24 views
what would be the regex pattern for this uri segment?
I have a URI segment
/incoming/article1271748.ece5/ALTERNATES/article_main/torm-500.jpg
And I need to exclude it using like this
<intercept-url pattern="/**/**jpg" access="permitAll"/>
...
0
votes
1answer
46 views
Spring 3, Hibernate 4 AutoWired sessionFactory with Generic DAO
Using Spring MVC 3 & Hibernate 4 I'm getting:
java.lang.NullPointerException
com.daniel.rr.dao.common.DAOImpl.getSession(DAOImpl.java:22)
com.daniel.rr.dao.common.DAOImpl.save(DAOImpl.java:27)
...
0
votes
0answers
27 views
Spring 3 and JBoss 6 issue with Tiles 2.2.1/2
Im working on building my first ever spring app, and i started with some hello world stuff from the net, and ive been building up step by step.... the annotations and stuff is awesome (i usually work ...
0
votes
1answer
44 views
how the values transfer between thymeleaf and spring controller, viceversa
I am new to thymeleaf... Can someone please tell how values is passed between thymeleaf html and spring controllers... Please suggest good tutorials for thymeleaf-spring-mvc...
In the below example, ...
0
votes
2answers
65 views
Spring 3 MVC extra @RequestMapping value getting appended to returned view
I have a view 'hi.jsp' with user name and password text fields. I need to submit 'hi.jsp' to 'LoginController.java'. If there is any error in the data submitted then 'LoginController.java' must ...
2
votes
1answer
31 views
Using custom spring security annotations
I'm trying to make use of springs security annotations like @PreAuthorize and @Secured but Im looking to evaluate a user not on a role but whether they have permissions to a particular entity in this ...
0
votes
1answer
36 views
Use Spring 3 filters to embed timestamp in resource paths?
Would it work to setup some filters using Spring 3 MVC where the paths for javascript files and css files are modified when streamed to the client, by embedding some timestamp in the filename. And ...
0
votes
1answer
75 views
can we use hasPermission secution expression in xml config of spring?
Could we use something like this in spring configuration xml file :
<http auto-config="true" use-expressions="true" >
<intercept-url pattern="/hardcopy/*" access="isAuthenticated() ...
0
votes
1answer
39 views
How to get hold of user details in custom expression handlers
I am using a custom security expression handler and using spring 3.2.0. Here is the custom expression root class :
public class CustomerPortalSecurityExpressionRoot extends WebSecurityExpressionRoot ...
0
votes
1answer
88 views
autowire unmanage beans using context:component-scan
with reference to the below example,
Autowiring Unmanaged Beans Annotated With @Component
It states that you are required to register the bean in xml file and then only you can wire it in your Java ...
0
votes
0answers
64 views
JSPG0036E error when running application on websphere application server
I am developing an application using the websphere application server 6.1 in websphere development studio.
Spring MVC 3.0 is the framework I am using and here goes my Deployment Descriptor.
...
0
votes
1answer
79 views
Autowire/inject scoped bean into controller method
Spring 3.2. Everything works when I do:
@Controller
public class MyController {
@Inject
Provider<MyBean> provider;
@RequestMapping("/chart")
public void ...
0
votes
0answers
150 views
Spring MVC Form backing object field names
Is it possible to specify a text input field id to bind a form backing object to? My form is using third-party javascript and I do not have control over the input's id value.
For example:
<input ...
0
votes
1answer
100 views
How to make embedded Jetty use the AppContext it's defined in as parent context for servlets
I have a standalone java app that now runs an embedded Jetty server to expose a RESTful API for HTTP. It does make heavy use of Spring beans for everything from Hibernate to Jetty. I have Jetty ...
3
votes
1answer
109 views
java.lang.IllegalStateException: File has already been moved - cannot be transferred again
I am trying to upload a file and save it on server. But I get :
java.lang.IllegalStateException: File has already been moved - cannot be transferred again I am using Commons FileUpload ...
0
votes
3answers
84 views
Cannot find bean definition , should I annotate an interface too?
I have an interface as show below
public interface UserManager {
void insertUser(User user);
.......
Now I have an implementation class as below
@Service
public class ...
0
votes
1answer
125 views
Custom data binder in Spring 3 Controller
A spring 2 way for registering a custom data binder in a controller would be to override the createBinder method of the extended spring controller. What is the spring 3 way of doing this? We use the ...
0
votes
1answer
60 views
meaning of action-response style web framework (Spring MVC 3)
I am learning Spring MVC. In the SPRINGSOURCE BLOG The author Colin Sampaleanu says that "Spring MVC, a part of the core Spring Framework, is a mature and capable action-response style web framework".
...
1
vote
1answer
273 views
Spring 3 Static Resource Mapping with Thymeleaf
I am having an issue mapping my static resources with Spring. I am getting a 404 error. My servlet code is as below
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
1
vote
1answer
238 views
spring xml based configuration from java based configuration
I am doing sample chat application using spring mvc and redis server by following steps from
http://blog.springsource.org/2012/05/16/spring-mvc-3-2-preview-chat-sample/
the example given there is by ...
1
vote
1answer
632 views
no declaration can be found for element 'mvc:annotation-driven'
I have the requirement of returning JSON/Xml data from my controller.From what i found,I needed @ResponseBody in my method and for that i need enabled.I have tried all sorts of RnD but am still ...
1
vote
0answers
443 views
Spring 3 Security j_spring_security_check
I'm trying to learn, how spring security works, so I've downloaded some sample project and then I tried to implement that solution to my project. But when I try to login, I get 404 error and in an ...
0
votes
2answers
129 views
spring 3 not rendering model in jsp
I am a bit disapointed concerning Spring 3 not rendering my model in a jsp using Expression Language and I have to admit that I dont understand why. If anyone could help me understanting why I can't ...
0
votes
1answer
77 views
What is the proper way for mail polling in Spring 3+ Tomcat apache?
I am working on Spring 3 + Apache Tomcat based web application I need to implement mail polling in which emails will be fetched using JMS or any other mail server technology (like apache camel or ...
0
votes
0answers
216 views
Spring MVC REST API- How to accept a list of parameters as an input
In a Java REST API that I am working on, I am using Spring MVC.
Now, there is a API endpoint required for fetching user information for multiple users, which should accept a list of user IDs (IDs are ...
0
votes
1answer
275 views
File upload via Spring MVC API+ Jquery based Front END HTML Web App
I wish to upload a file using a Spring MVC based REST API. The API will be a typical Java web app and will act as the backend.
The frontend will be a HTML web app that uses JQuery.
I want to show an ...
0
votes
1answer
287 views
Avoid default value in spring <form:input path=“var” /> for int variable
I'm using Spring 3.1.0 JARs for my application. I have mapped my bean class with view through command name, I have no problem with mapping it works clearly.
The issue is that I'm having an int ...
0
votes
0answers
160 views
Configuring Spring 3 MVC + Tiles 2 = getting StackOverFlowError
I am learning to use Spring 3 MVC along with tiles framework. I'm getting the following error:
HTTP Status 500 - Servlet.init() for servlet springMVC threw exception
type Exception report
message ...
0
votes
2answers
177 views
Using the setAllowedFields() method in Spring
I'm using Spring 3.2.0. I have registered a few custom property editors for some basic needs as follows.
import editors.DateTimeEditor;
import editors.StrictNumberFormatEditor;
import ...
0
votes
1answer
56 views
How to intercept request for specific file type?
Our application is a Java/Spring3/Spring MVC/Hibernate based app.
We have some resources that are stored in various different places on the server machine. The locations are stored in the database. ...
0
votes
0answers
104 views
Migration Spring 2.0 to Spring 3.0 , throwing Servlet Exception , Issue
I am having a Custom framework which uses Spring 2.0 Classes .
I have removed the Spring 2.0 Jar and kept the
Spring-aop-3.2.0.RELEASE.jar , beans etc , All the jars downloaded from Spring Website.
...
0
votes
1answer
179 views
Forwarding request from one controller method to another controller method, the BindingResult is empty
I have 2 controllers with 2 methods. In one of the methods I validate my Bean and populate the BindingResult object. I then add my bean in to model and forward the request to another controller like ...
1
vote
2answers
1k views
Validation with Spring 3.2.0
I'm using HibernateValidator 4.3.1. Validations are performed as intended throughout the entire application.
I have registered some custom editors to perform validation globally such as for ensuring ...
0
votes
1answer
309 views
Spring 3 MVC - Browsers think my downloads are .htm files
I implemented a download controller in a Spring 3 framework webapp which is supposed to be be called to initiate a Open/Save dialog when called.
It does indeed initiate the Open/Save dialog and Save ...
5
votes
3answers
1k views
How to configure which controllers Spring @ControllerAdvice will be applied to?
I have two types of controllers in my spring application.
View controllers that forward to views to generate HTML
API controllers that return JSON directly from the controllers
Both the API and ...
0
votes
1answer
276 views
In spring MVC, a void return type means that the view would be derived from the URL or from the method name?
I am using Spring 3.0.6, and have noted a few (apparently) contradictory statements regarding what happens when a controller method declares a void return type (or returns a null). Consider the ...
1
vote
2answers
666 views
Using @Value annotation with static final variable in Spring Framework
I want to make the Request Mappings in my Spring application dynamic. So that my url can not be understandable. And I can show anything meaningless to the user and still mapping purpose will be ...
0
votes
1answer
406 views
Spring-MVC-Java based Configuration: getOutputStream() has already been called for this response
I am using Spring 3 with Java based configuration.
I have a module that exports an Excel sheet to the user (i.e. download a sheet to the user)
I got the following exception at log .... but it ...
1
vote
1answer
578 views
Reverse ajax using DeferredResult of Spring 3.2.0.RELEASE. Not working in IE
I am trying to create a demo of Group Chat using reverse ajax in Spring. I am using Spring 3.2.0.RELEASE version.
I am using DeferredResult to perform reverse ajax in my controller. Following is the ...
0
votes
1answer
85 views
Escape output from @Responsebody
Is there a way to escape the XML produced when using @Responsebody.
@RequestMapping(value = "/xml", method = RequestMethod.GET)
public @Responsebody MyClass asXML(){
MyClass m = ...
2
votes
1answer
498 views
Dependency Injection Issue in Spring MVC [version Spring 3.1.0.RELEASE]
I am creating a Spring MVC application.
The Controller depends on one of the services [name: TestExecutionOrchestratorService.java] in the Service layer.
The TestExecutionOrchestratorService depends ...
4
votes
1answer
714 views
HttpMediaTypeNotAcceptableException after upgrading to Spring 3.2
After upgrading my Spring MVC application to Spring 3.2 I'm getting the following exception when accessing some of my URLs:
org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find ...
0
votes
3answers
142 views
MappingException: Unknown entity when using Entity subclass as Command
I have a User object mapped with hibernate annotations working just fine.
Eg
@Entity
public class User implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private ...
1
vote
2answers
984 views
Spring 3.1.2 RowMapper parameterization
I'm developing a web application using Spring 3.1.2, and need to create a custom row mapper. I have created a private static final class which implements RowMapper, but i'm getting the error message ...
0
votes
1answer
185 views
How to use spring mvc controllers without component-scanning?
I use Spring 3.x MVC @Controller annotations. My servlet.xml has this entry:
<context:component-scan base-package=”com.my.controllers.package”/>
My webapp, on Google's app engine has to ...
0
votes
0answers
170 views
Invoke Stored Procedure with multiple input params (objects) using createTypeValue() callback in Spring 3.1
I am trying to call a stored procedure that requires 2 java.sql.Types.STRUCT objects as input.
I am using Spring 3.1 and trying to use the createTypeValue ...
0
votes
0answers
75 views
Spring 3 MVC Validation. Unique Validator For each Controller Method
I need to associate a Unique Validator for each of the Controller Method. I understand how to associate a validator for a specific controller class(By creating a base controller class and implementing ...
2
votes
1answer
330 views
Spring 3 @ModelAttribute with List in model
I have two models :
public class Size {
private String name;
// getter and setter
}
public class Product {
private int id;
private String designation;
private Float price;
...
0
votes
0answers
44 views
excluding a package from autowiring inspring 3
I have tried the following to exclude the sub package from autowiring but it still does it.. not sure why?
<context:component-scan base-package="com.virtual.example">
...


