0
votes
0answers
11 views

Google App Engine Spring Session Attribute

I have two session attributes within a Spring controller: @SessionAttributes( {"mA", "allStaffAvailable"}) When accessing the controller that uses these, unlike when the app was first developed ...
0
votes
1answer
12 views

Not an managed type for Spring Data Mongodb

I have the following mongo configuration: <context:component-scan base-package="com.example" /> <mongo:repositories base-package="com.example.repositories.mongodb" /> I have the ...
0
votes
3answers
39 views

Spring At least one base package must be specified exception

When I'm compiling my project it gives this error and stop compiling org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ...
0
votes
2answers
43 views

no such bean definition exception in spring

I am new to the concepts of spring and hibernate I am using collections in my simple spring program.My idea is to store an authot name,address and id into collection.its a simple spring framework but ...
0
votes
1answer
22 views

Is there any way to Ignore(Bypass) BeansException(BeanCreationException) and go on in Spring?

In the load-time, Spring Container initializes Beans... when It finds the Bean-related error, It stops and roll-backs(not exact terminology)... as I know. Here's our condition. We are developing a ...
0
votes
1answer
53 views

Can't restart Liferay: numerous BeanCreationException-s

After restarting a long-worked Liferay I got a numerous exceptions during startup (approx 93 chained exceptions) with out-of-memory at the end. No exception looks like because of my portlet ...
0
votes
3answers
44 views

can't store parameter in session (Spring MVC)

I have the following problem with annotation based Spring MVC: I have two Controllers (LoginController, AdminController) and I can pass an object (loggedInUser of type BonjourUser) form the ...
1
vote
2answers
42 views

Spring: BeanCreationException

I am trying to get the session from the session factory to use with my CRUD methods. I tried to set the session in the constructor, but the bean has not been initialized by then. How do I initialize ...
0
votes
0answers
39 views

sendRedirect() at first logging

I have the following problem, I'm developing an app which was developed with Spring Webflow 2.3.1. This app has a main flow with the main menu and the subflows to go to different pages. But now the ...
-2
votes
1answer
42 views

org.springframework.beans.factory.BeanCreationException:Invalid bean definition

I get the BeanDefinitionStoreException when I try to run the server. This is my spring-ws-servlet.xml: <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
1answer
90 views

JPA + Spring: UnexpectedRollbackException when Transaction is REQUIRED, REQUIRES_NEW or NESTED

I'm doing my first project with Spring, JPA, and GlassFish 3.1 and I'm having some troubles. I've been looking for a solution for a week, but I have found nothing. I have an Entity (called Role), a ...
0
votes
1answer
130 views

Java exception when spring loading context configuration file - occurs in UNIX but not Windows

I've been stuck with this one for a while now. I have created a mini subset of the project where this occurs and reproduced the issue. Basically I'm running a test which loads a spring context file ...
0
votes
1answer
52 views

JPA: exception obtaining an entity that references another

I am writing a simple application using Spring and JPA. I have 2 entities: User and Role, with a relation of N..1. Whenever I try to get any of this entities from the database, I get an exception ...
0
votes
2answers
150 views

How to rollback Spring Transaction when an Exception is thrown

I am using spring 3.0.5 and hibernate 3.6. In my project there is a scenario where i have to rollback transaction of any exception in thrown or error occurs. This the sample code, Everything works ...
0
votes
0answers
50 views

Hibernate merge issue

i'm actually working in a project using hibernate and spring and i have a problem with an hibernate Exception "more than one row with the given identifier was found". After research i've learned some ...
1
vote
2answers
70 views

[Solved]Custom, dynamic error page with Spring framework

I would like my App to display a custom error page when an Exception is thrown. The response containing the page should have the rigth HTTP status and contain the exeption message and possibly other ...
-3
votes
1answer
52 views

Global exception handling in Spring, Tomcat7

What is the best way to handle global exceptions? Everything what I have found is not working at all. Have tried filter, UnhandledMessageHandler etc.
1
vote
0answers
88 views

The RepositoryFactory has already been initialized Exception in tiles and Velocity Integration

I am trying to integrate the tiles+ velocity in Spring MVC. I found the link in github which was serving the same purpose. So I am using those classes in my Project in Eclispe. When I run the project ...
0
votes
0answers
347 views

Spring Webflow Cannot call sendRedirect() after the response hasbeen committed

I have and webapplication based in Spring Webflow and Primefaces, and sometimes when I execute the screen I get the IllegalStateException ... but is really weird since we are not making a call before ...
0
votes
1answer
346 views

Could not initialize class org.hibernate.validator.engine.ConfigurationImpl in spring MVC?

When I place hibernate-validator-4.0.2.GA.jar to WEB-INF/lib and start my app, I'm getting a strange error as org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
0
votes
0answers
156 views

Attribute not found:NoSuchAttributeException in tiles with Spring

I searched for all the questions asked on this site and tried all the changes but no luck. So posting the query here: I am getting following exception: HTTP Status 500 - ...
0
votes
1answer
79 views

Using Tomcat manager in tomcat 7.0 + sping MVC, Webapp reload gives apachelifecycle exception

Using Tomcat manager in tomcat 7.0 + sping MVC, Webapp reload gives apachelifecycle exception. It all starts up fine and works fine when started normally. After the startup for reloading the webapp, ...
1
vote
1answer
142 views

how to handle exceptions in a project of Struts + Spring + Hibernate

I want to know what is the better approach for handling exception.My web project is having Struts-Spring and Hibernate. An exception can occur either at Struts Action or Biz Layer or at Data Layer. ...
0
votes
2answers
114 views

Spring MVC exception, Error creating bean

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
2answers
247 views

spring @ExceptionHandler

all, my controller: @RequestMapping(method = RequestMethod.GET, value = "/search") @ResponseBody public CemeteryRestResponse<List<String>> search( @RequestParam("location") ...
0
votes
2answers
240 views

Catch Exception In Spring Web Service Interceptor and return Soap response

What is the best approach to catch an exception in a Spring Web Service, extract the details of it, and format it into a soap response? My error message details must go in the header of the Soap ...
0
votes
2answers
114 views

handling wrapped exceptions in spring mvc

I have spring mvc and jackson. When I get incorrect request, jackson mapping fails and UnrecognizedPropertyException is thrown. i want to handle this exception using @ExceptionHandler public String ...
1
vote
2answers
183 views

SoapFaultMappingExceptionResolver never gets hit with regular java exception

Can anyone tell me why I cant catch a regular Java exception with my resolver so I can transform it before the response is sent back? It never gets hit with a breakpoint. If its not possible, how ...
1
vote
5answers
88 views

Using Spring framework exceptions in the application code?

Is it considered bad practice to use exceptions that frameworks provide? I am using Spring JDBC and I found this IncorrectResultSizeDataAccessException exception which does exactly what I want. I will ...
0
votes
1answer
64 views

Java/Spring catching Exceptions/Logging and Update status

Lets say that from a spring service, i want to invoke through a client an external system, if that invocation fails (throws unchecked exception) i want to log it, update order status in DB and rethrow ...
0
votes
1answer
137 views

Spring Data converter error on first page load, works fine afterwards

I am using spring-data-mongodb dependency in my Spring MVC application. It was working fine till now but I needed to add a Class instance property to one of my domain objects. Since Mongo doesn't ...
-2
votes
1answer
265 views

Exception Handling Spring

We are converting our app from Struts 1.2 to Springs 3.0. So we are making changes in exception handling done in our Struts 2 code. As per my undestanding this is how we need to do. ...
0
votes
1answer
130 views

Weird Hibernate Error

I'm working on a Java project and I'm confused as to what's happening with a situation I've stumbled upon. I'm developing on a mac with mac osx mountain lion. I'm using eclipse and have everything ...
2
votes
2answers
453 views

Exception Handling Strategy with Spring/JPA/JSF

We are using JSF, Spring and JPA in our application. We are trying to simplify our Exception Handling strategy for our project. Our application architecture is like below: UI(JSF) --> Managed Beans ...
0
votes
1answer
179 views

Exception in thread “main” java.lang.NullPointerException in spring application with redis

I have a java app with redis, and it throws the exception. Here are classes. Main class: public class App { public static void main( String[] args ) { ManipulatingData manData = new ...
0
votes
1answer
161 views

Exception while connecting to MongoDB using spring data

I am trying to connect to a MongoDB instance from my testcases. I am getting the below error... Mongo process is up and running. Any thoughts on the error reason? ...
0
votes
0answers
258 views

Weird behaviour in Spring ExceptionHandler

I'm building a REST API. When the @Controller throws an exception I want to properly set status codes. In order to achieve this, all controller methods have been declared throws ClientException, ...
0
votes
1answer
556 views

ibatis spring java.lang.NoSuchMethodError com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse

i am using spring 3.2.0 with ibatis 2.3.4 in weblogic 10.3.6 while deploying in weblogic. I am getting this NoSuchMethodError as below: User defined listener ...
1
vote
0answers
102 views

Spring 3 + Tiles 2 form error

I am getting this error when i click submit on a form in Spring 3 + Tiles 2...i dont know but the other pages which are not form work fine...The code for that is : Error 500--Internal Server Error ...
1
vote
3answers
943 views

How can I return an error message and HTTP status code that calls jQuery AJAX error function?

Using Spring, I have a SimpleMappingExceptionResolver that catches any unexpected exceptions in my application in the resolveException method. In the method, I return a ModelAndView that gives error ...
0
votes
1answer
513 views

Getting No bean named 'sessionFactory' error when using OpenSessionInViewFilter

I am using Hibernate's lazy loading, and after adding OpenSessionInViewFilter to my web.xml I started to get sessionFactory missing exception, even after defining the sessionFactory bean to use. ...
0
votes
0answers
78 views

Using Spring AOP, How can I intercept a exception just when it occurred?

Some code like this: public class A { @Autoware private B b; public void a() { //AAA: some logic process that maybe throw exception b.b(); } } public class B { ...
2
votes
1answer
1k views

Catching exceptions from a Jersey REST client thrown from a Spring MVC Rest service

I implemented a REST application using Spring MVC, Jersey and JAXB. The client sends a ServiceRequest object which contains information about the request and receives a ServiceResponse object back ...
0
votes
1answer
223 views

BeanCreationException when trying to import application context from another project

So I am trying to learn jsf, maven, spring, and hibernate. I recently got a single web project to take data from the ui, pass it to the managed bean, domain object, and save to the db. But now I want ...
0
votes
1answer
100 views

BeanCreationException spring hibernate jsf

So I have a huge update. I finally got my sessionFactory to initialize and not be null. I still have (hopefully) the last problem. I am getting the following stacktrace when I go to store the data in ...
0
votes
1answer
93 views

Gemfire configuration issues

I have an xml config file for setting up gemfire as below <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
2answers
130 views

error-page setting in web.xml doesn't work

In my portlet, I'd like to handle all exception in one way. Config error-type in web.xml. Here is my code in web.xml <error-page> ...
2
votes
1answer
1k views

Spring security Taglib

i want use spring security taglibs in my jsf project,so I've made ​​the following changes to the project,but I get this Exception: Error occurred during deployment: Exception while loading the app ...
1
vote
2answers
199 views

Java - spring console application global exception handler

Java - spring - quartz application I have Java application with spring 3.x which use quartz scheduler to process some data. I was looking at the following article where they defined global Global ...
4
votes
1answer
1k views

Handle Custom Exceptions in Spring Security

We are creating a RESTful API with spring MVC + spring security + hibernate. The API can produce both JSON and HTML. Doing a good error handling for spring security is giving me a headache: ...

1 2 3 4