The Spring Framework is an open source application framework for the Java platform, designed to make Java SE/Java EE technologies easier to use.
0
votes
2answers
14 views
How to decode Gzip compressed request body in Spring MVC
I have a client that sends data with
CONTENT-ENCODING deflate
I have code like this
@RequestMapping(value = "/connect", method = RequestMethod.POST)
@ResponseBody
public Map ...
1
vote
2answers
30 views
How to create paths in RESTful web service for “action oriented” methods?
I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
0
votes
1answer
6 views
Spring annotation based configuration change
I have a spring MVC (3.1) web app using Hibernate that is all working correctly - today, I have tried to move the configuration completely over to annotation based config (only using xml for the ...
0
votes
2answers
24 views
How to enter data in two tables at one time in spring mvc hibernate
Article class:
@Entity
@Table(name = "imei")
public class Article {
@Id
//@GeneratedValue
@Column(name = "imei1",nullable = false)
private Long imeiNo;
@Column(name = ...
0
votes
0answers
13 views
Spring security database authentication issue
I'm trying to authenticate a user with saved username and password
I've tried two ways with only one working and I would like to know why the other is not working.
My models - UserEntity
public ...
1
vote
0answers
6 views
How to make CommonsMultipartFile from absolute file path?
I'm creating an API for my application. In the GUI browser based application the file is uploaded via a form submission. So I simply do CommonsMultipartFile file = request.(myfile). However, the API ...
0
votes
1answer
11 views
NullPointer exception in Spring Dependancy Injection with JSF2
i am using jsf2 and spring for just as DI. when i am making request from page i am getting NullPointer Exception. Means Autowiring is not working.
i am getting follwoing error. follwing is my whole ...
0
votes
0answers
16 views
HibernateTemplate returning null
Hi! here I am trying to use hibernateTemplate in the dao layer, earlier I have working with sessionfactory for retrieving and it worked fine but now I need to implement hibernateTemplate, When I am ...
0
votes
0answers
18 views
Spring MVC multiple rows form submit submits new ModelAttribute
Ok its another one of spring's null ModelAttribute but I've tried everything I found but it doesn't work.
I've adding this tutorials functionality to my web app spring-mvc everythings workds greate ...
0
votes
2answers
32 views
Mockito method returns null
I looked in the forum but couldn't find why this would happen
I have
public class AImpl implements A{
@Autowired
B bImpl;
protected void doSomething(){
String s = "test";
...
2
votes
0answers
30 views
High Performance Messaging between Java Client and Java 'Back End'
I have a basic Java Messaging application that sends JAVA objects to a remote server for processing. I leverage Spring support on both sides of the wire and use ActiveMQ as my JMS provider. It works ...
-2
votes
0answers
16 views
@Transactional annotation - no transaction
I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
0
votes
0answers
26 views
How spring framework manage cyclic dependency
I am relatively new to using spring framework. I have read below advantages of using spring :
...Containers also provide support for instantiation of managed objects, cyclical dependencies, life ...
0
votes
1answer
11 views
WARNING: No mapping for springapp1 welcome.htm in DispatcherServlet with name springapp1
I have created a simple jsp page which is being retrieved by the controller. But when I retreive this url localhost:8080/springapp1/welcome.htm, I am getting the following error in tomcat:
I am ...
0
votes
1answer
41 views
initializing java.util.ArrayList using spring bean
i'm developing a web application using spring 3. i'm using tomcat 6 as the web container.
in my web.xml file i bound the file named applicationContext.xml as the spring definition file.
...
0
votes
0answers
8 views
Cas 3.5.2 audit failed
I am a new-hander to cas.
I download cas-server-3.5.2 and cas-client-3.2.1,then I deploy the cas server to tomcat 6 and 7.
I change the configuration in deployementConfig.xml and some other file to ...
1
vote
0answers
27 views
executeUpdate() hibernate and spring return to controller number of rows
I have a problem with return affected rows in Springmvc/Hibernate project(MySQL databse).
This is my DAO file, which must return the size of affected rows in my database.
When i execute this method ...
0
votes
2answers
15 views
Can not running application with Spring Framework
I have defined a simple class that looking like this
public class Spring1 {
public static void main(String[] args) {
ApplicationContext context = new ...
0
votes
1answer
22 views
PagedListHolder<clazz> cannot be resolved to a type
As you know in spring mvc we can provide pagination mechanism using PagedListHolder class.
I already did provide methods that provide pagination for me but I got forced to do declare methods for all ...
0
votes
0answers
14 views
Spring JPA loads all associated properties despite marking them as FetchType.LAZY in entity class
I am using JPA + Hibernate. The following is the entity class:
@Entity
@Table(name = "test_details")
public class TestDetailsEntity implements Serializable {
private static final long ...
-1
votes
0answers
37 views
Print a Spring variable in browser using JavaScript
I am trying to print the variable in the if condition. It's done using Spring and JavaScript. I don't know Spring. How do I print the value of a Spring variable in the browser?
...
0
votes
0answers
12 views
Cannot create JDBC driver of class '' for connect URL 'null' oracle XE MVC Spring Mybatis Tomcat 7
I created a simple web application with MVC Spring Integrated (or at least trying to) My batis. I am using Oracle XE database and Tomcat 7. My problem is that I am not being able to connect to my ...
0
votes
1answer
16 views
Spring 3 — NullPointerException from JDBCTemplate.getQueryForMap()
I am running a custom tag in a Spring JSP. I am getting the following error message.
java.lang.NullPointerException
com.dao.Poll1DAO.getVotes(Poll1DAO.java:27)
...
2
votes
1answer
25 views
Spring Data JPA - loading parent after explicit child deletion returns collection of children with deleted child
I have Parent->Child bidirectional relationship as follows...
class Parent{
@OneToMany(mappedBy="parent", fetch = FetchType.EAGER)
Collection<Child> children;
}
class Child{
...
0
votes
1answer
10 views
setFirstResult and setMaxResult doesn't work well with Order By
What could cause the CriteriaQuery orderBy method stop working?
Here are the implementations:
OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager());
...
0
votes
1answer
24 views
Generic DAO - “Never go full generic!”
Ive seen allot of usages of generic dao over the internet.
you gotta love it:
public interface GenericDao <T, PK extends Serializable> {}
public class GenericDaoHibernateImpl <T, PK extends ...
0
votes
1answer
17 views
return dynamic value in java REST / Spring / Hibernate
I've inherited a REST API that is using JBoss, Spring, Hibernate, etc. and I'm new to all these so please forgive what seems like a dumb question (to me).
The basic flow when performing a GET is to ...
0
votes
1answer
22 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 ?
...
0
votes
0answers
22 views
printing path name in browser for a spring framework
I am integrating my js with html..
the back end is spring frame work...
i dont have knowledege abt spring frame work...
i am trying to print the path name path="xxcpdEprBehavior.name"in browser...
...
0
votes
1answer
21 views
Spring managed object always null. wicket framework
today I have had an infuriating problem as follows:
I have a wicket based application where I am using spring to manage the objects connecting the application to the database, in the past this has ...
1
vote
1answer
28 views
Spring 3 + JPA 2 + Hibernate + Elasticbeanstalk Issue
I have a Spring 3 app utilising JPA 2 and Hibernate and have it running perfectly locally in Jetty. When I try to upload this to an Elasticbeanstalk container running Tomcat 7 I get a class not found ...
0
votes
0answers
24 views
Java+Swing+Spring: saving objects in memory during execution time
I want to save user account data (which is placed in this class), in application memory (as similar in the case of web apps where any object could be saved ina a HttpContext for example):
public ...
0
votes
1answer
8 views
Spring3 mybatis 3 mapper no such bean found exception
I am trying Spring 3 + Mybatis3 + mysql but didn't work out, tried almost all of the tutorials getting same exception, may be some one here can help me out
Following is the Error trace output and i ...
1
vote
0answers
21 views
jquery spring mvc html in javascript code
I have two tabs like the one shown below.
User selects the checkbox which he want to edit and the next tab shows the field for editing the field.
My first tab is loaded using jquery load function. ...
0
votes
0answers
14 views
update XML file in a page Jsp
I use spring security and i have many roles in my database for example ROLE_ADMIN and ROLE_USER so in my xml file named "spring-security.xml" i defin for each page wich role can see it :
<http ...
0
votes
1answer
19 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" ...
1
vote
0answers
9 views
when I am running test cases that time entity manager is injected successfully but while running web app its throwing NullPointerException
I have a strange problem. I am injecting the entity manager using PersistenceContext using applicatioContext bean. But problem is that when I am running test cases that time entity manager is injected ...
0
votes
0answers
12 views
mybatis 3.1.1+ dont show sql while running JUnit test
I got problem with mybatis to log sql queries. logback configuration set to DEBUG.
<logger name="java.sql" level="DEBUG" additivity="false" />
<logger name="org.springframework" ...
0
votes
0answers
11 views
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mongo:db-factory'
I am getting error like cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mongo:db-factory'.
Please can any one help me.
0
votes
1answer
23 views
How to populate Form from Spring dropdown when form is submitted
My code lists the data that I would like to see, but when I hit submit it fails to populate the backing form with exception below. How can I make the bindings work? The exception I get is of Mismatch ...
0
votes
2answers
22 views
@Autowired is not working with jersey and spring
When I am running test at that time @Autowired is working but when I run the web app and try to fetch data at that time its throwing null pointer exception.
this is my controller
In this BuyerRepo ...
0
votes
1answer
40 views
What this running error means?
Hello, I`m trying to run a job in spring batch but its giving me this error which i dont know how to solve:
`$` C:\Program Files\Microsoft Visual Studio 8\VC>java -jar C:\Workspacetest\testpro
...
0
votes
1answer
35 views
Error when I start my application - Hibernate+spring mvc
I have application with spring mvc + hibernate. All tests It's working but when I try to start my application with tomcat I get an error:
HTTP Status 500 -
type Exception report
message
...
0
votes
1answer
46 views
C3P0 and Java Swing application
I have an Java Swing application which include a c3p0 library for manage connection pools.
In its configuration I setted property c3p0.maxPoolSize=10 but it still creates more connections once a user ...
0
votes
1answer
22 views
Spring Security Rest DigestEntryPoint's key and realm
I'm following baeldung's Spring Security for REST guide, and he has you create a DigestAuthenticationEntryPoint.
When you do that, he says you should set the RealmName and Key in that, and he gives ...
0
votes
0answers
12 views
LinkedIn JS API token exchange to REST token using Spring Social for Linkedin
I'm trying to do the following:
Let the user authenticate and authorize through Linkedin using Linkedin JSAPI, then take the authentication details and send them to my server to get the user profile ...
2
votes
1answer
31 views
Ignoring root element using JAXB
I am using Spring and it's REST template to bind XML from a webservice to a domain object using JAXB. The XML returned from the web service is as follows:
<response>
<user>
...
0
votes
1answer
36 views
Display JSR-303 errors before form submission with Spring MVC
Is there an easy way in Spring MVC 3.x to display form error messages (obtained by JSR303 validation), before submiting the form ?
Consider the example code at the end of this post.
The end-user is ...
0
votes
0answers
62 views
How do I resolve this probem using Calendar and ComboBox with PrimeFace?
I use a PrimeFaces form with InputTexts, ComboBoxes and Calendars, but I have a problem when I select a date in Calender or a value from the ComboBox.
Screen Capture.
Form code:
<h:form ...
0
votes
0answers
27 views
How to retrieve non key columns on inserting the record into the table?
I know I can use the following query to get the primary key of the record inserted into the table.
namedParameterJdbcTemplate.update("INSERT INTO TABLE(ID, col1, col2)"
+ ...





