Tagged Questions
0
votes
1answer
24 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 ...
-2
votes
0answers
23 views
Hibernate Entities dosen't work after database modification
i have an application works good ! and i have to change my database structure ! and when i changed it ! and i generate my model classes with hibernate i got this exception !
HCANN000001: Hibernate ...
0
votes
1answer
22 views
@Scheduled task does not start
I am trying to use the @Scheduled feature. I have followed this and this tutorials but I can not get my scheduled task to be executed.
I have created a worker:
@Component("syncWorker")
public class ...
2
votes
1answer
33 views
What strategies are used for annotation scanning in practice?
I am aware of the below mentioned ways in which annotations could be detected and used:
Annotation processors (compile time code generation)
Runtime annotation scanning (e.g. ASM and other byte-code ...
0
votes
0answers
16 views
Race condition setting up Spring annotation proxies
I'm running Spring 3.2.2 and I'm seeing a race condition during my application startup where some of my beans are being created faster than the @Transactional and @Cacheable annotation advisors. Here ...
4
votes
2answers
78 views
Is it possible to inject a bean defined with @Component in a xml defined bean?
And if so which configuration is needed?
The annotated class:
@Component
public class MyClass implements MyInterface
{
@Resource
private MyDependency myDependency; //Isn't initialized ...
-4
votes
0answers
15 views
How can I implement spring annotations transaction management?
I need to use spring transaction management along with JTA and hibernate I have tried all the solutions available on the net but to no avail can anyone plz help.
0
votes
0answers
23 views
How to use ClassPathScanningCandidateComponentProvider to scan jar Annotation classes? [closed]
I use the spring ClassPathScanningCandidateComponentProvider to search the Annotation classes
?
Here Is My code:
public static void main( String[] args )
{
...
0
votes
1answer
38 views
Annotation scan not scanning external jars in classpath
Issue: Spring Component Annotation scan not picking up the class annotated in the external jar which is not included in pom.xml. But i need to scan for classes with specific annotation from external ...
1
vote
2answers
39 views
Hibernate transactional method call within transactional method rollback
I am trying to create a transactional method which calls several other transactional methods in order to save some interdependent db entities. I want the transaction to rollback completely if any ...
0
votes
1answer
30 views
create beans with annotation spring
In struts2 i almost did not use any xml configs and used much of annotations for MVC. I build a small application in that way using struts2. Now i want to develop same project using spring 3.2. Now i ...
0
votes
1answer
40 views
I/O failure during classpath scanning in spring MVC
Hi I am new to Spring and I am trying to do a simple spring mvc application which accepts values from customer form and displays the same in the same in the UI. Now the problem is when I try to ...
0
votes
1answer
53 views
Spring MVC data binding diff in javabean and @RequestParam boolean request parameter
Spring MVC support request parameter to javabean. But when I want to bind boolean,
It is still not work in javabean.
If the code in controller is:
public void test(@RequestParam(value="isCheck") ...
0
votes
1answer
48 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
36 views
Is there a Spring Annotation for Error Handling that is not MVC related?
I have a bunch of Processors (basic data saving objects) that are currently in one big transaction. If one of them fails (duplicate data or whatever) I loose all the data.
I want to put the ...
-1
votes
1answer
19 views
How to inject a value from properties file in a method level annotation in spring?
We need to Inject a property into a method annotation.
@MyAnno(someproperty = @Value("${someproperty}"))
public muMethod{
}
is it possible?
0
votes
1answer
64 views
spring mvc annotation - I can not mapping url to controller, Help me, please
I have .jsp page: index.jsp, that has form with link:
<form name="firstForm" method="get" action="list.form">
//-//-//
<a href = "removeFromStorage?id=<%=index %>">Remove ...
0
votes
1answer
109 views
Spring: Illegally attempted to associate a proxy with two open Sessions
I have a page to create taxis which consist on a simple form to fill my database. This class and the dao were autogenerated by hibernate tools. When I post my code and it's called the persist method ...
1
vote
1answer
56 views
Filter specific packages in @ComponentScan
I want to switch from XML based to Java based configuration in Spring. Now we have something like this in our application context:
<context:component-scan base-package="foo.bar">
...
0
votes
0answers
10 views
@DisableConcurrentExecution annotation in spring jobs
I am trying to implement spring batch in my application where the jobs are declared in the spring xml file.
Below is a part of my code:
<batch:job id="simpleJob">
<batch:step ...
1
vote
2answers
48 views
Wiring Spring constructor through annotations
I am wiring a class with the help of Spring annotations :
public class MyClass {
@Autowired
private B b ;
@Value("${foo}")
private String c ;
@Value("${bar}")
private ...
-1
votes
3answers
69 views
Spring, Annotation for Creating Current Date in Hibernate?
in my Spring Application using JPA Hibernate Annotions.
In that mysql Database have table and one column called CreateDate
This column value will be added when record is inserted.
So is their any ...
3
votes
1answer
125 views
How to avoid repeatig DAO methods in Service classes? @Transactional annotated DAO and Service classes - is it acceptable practice?
I know that the best practice is having both service and dao layers and to add @Transactional annotations on the service level. But in my case it means most of my service classes is created just to ...
0
votes
0answers
48 views
The request sent by the client was syntactically incorrect, Spring with Hibernate Annotations
I searched everywhere for this error and looked through every single thread here with the same title, changed a lot in my code but still, the error is there.
it says:
HTTP Status 400 -
type Status ...
1
vote
1answer
51 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 ...
1
vote
1answer
77 views
Spring 3 form validation shows error messages but field name not displayed
I have a 2 item form, that requires that both fields be entered. I'm using annotated validations, and am getting error messages, but they do not print the field name, just "may not be blank" instead ...
1
vote
2answers
67 views
mvc:annotation-driven does not work in spring
I have the <mvc:annotation-driven/> annotation which errors out. The error I get is :
The matching wildcard is strict, but no declaration can be found for element 'mvc:annotation-driven'.
When ...
1
vote
1answer
59 views
Spring interceptor works with xml but not with config class
Im currently using an interceptor configured with xml like this :
<mvc:interceptors>
<bean class="org.resthub.dashboard.BasicInterceptor" />
</mvc:interceptors>
But I would ...
0
votes
1answer
167 views
Spring 3.2 properties file auto-wiring fails
I have problems adding properties file to a spring 3.2.2 web application.
My Web.xml:
<servlet>
<servlet-name>spring</servlet-name>
...
2
votes
2answers
107 views
Advantages of using spring stereotypes?
I am developing a web application using spring-mvc.
Now the @Controller, @Service and @Repository stereotypes are available.
I found @Controller particulary useful, specially because I am using
...
0
votes
1answer
67 views
Custom annotation not being detected by Spring AOP
So, I've been trying to play with Spring AOP, but as soon as I start using custom method annotations, the AOP stops working.
Here is the annotation:
package com.test.annotations;
import ...
0
votes
1answer
146 views
Spring Autowire Annotation on Abstract class: No unique bean is defined
I've got an abstract class:
@Component
public abstract class BaseReport {
public void export() {
...
}
And a bunch of classes that extend it, and override the export() method (or not).
...
2
votes
2answers
90 views
Abstract classes, interfaces and Autowired
I have the following main class:
public class Startup implements UncaughtExceptionHandler {
@Autowired
private MessageListener messageListener;
private static Startup startup;
public static void ...
0
votes
2answers
45 views
Iterate complex custom annotation array
I have created a nested custom annotation. My code is here
@StatusCode(statusArray = {
@StatusCodesArray(key="200", value="value is ok"),
@StatusCodesArray(key="400", ...
0
votes
1answer
33 views
Chain reaction in Spring
Does it matter in which order the Spring resolves annotated beans defined in a Spring definition file as follows :
<context:annotation-config />
<context:component-scan ...
1
vote
0answers
50 views
missing annotation package in spring-modules-validation-0.8a source file
I have downloaded
spring-modules-validation-0.8a-sources.jar and spring-modules-validation-0.8a-
sources.jar.
In spring-modules-validation-0.8a-sources.jar there is package name annotation with ...
0
votes
1answer
117 views
getting error at spring-hibernate-maven project
I am getting "class file functionContext not found" error when I try to run project. It was running without errors but after i write some unit tests and delete them It started to give this error. Here ...
1
vote
1answer
35 views
Spring context scanning behavior
I'm getting the following:
2013-03-27 18:51:54,944 ERROR pringframework.web.context.ContextLoader: 227 - Context initialization failed
org.springframework.beans.factory.BeanCreationException: ...
2
votes
2answers
76 views
SpringMVC: Variables in Annotations
I have the following controller defined:
@Controller
@RequestMapping("/test")
public class MyController extends AbstractController
{
@Autowired
public ...
2
votes
1answer
55 views
Spring MVC: Ambiguous RequestMappings after moving to JavaConfig
After moving from XML setup to a JavaConfig setup many of our RequestMappings have broken and now return ambiguous method errors. Our methods rely on @PathVariable's with regular expressions to ...
1
vote
2answers
93 views
Custom annotation processor in spring
i've written thi annotation
@Retention(RetentionPolicy.SOURCE)
public @interface Encrypt {
}
and its processor...
@SupportedAnnotationTypes("it.trecube.annotation.Encrypt")
...
0
votes
1answer
61 views
Situations to use Annotations Vs XML configuration in Spring?
Sorry to ask this question which may be already asked in Stack Overflow for different situation.
I searched a lot in Stack overflow and google . But couldn't find a reliable and a well suitable ...
0
votes
0answers
55 views
Spring : Use ModelAndView with annotation
in my controller, I return a ModelAndView based on a parameter.
if the value of the parameter is "excel" I want to return a AbstractJExcelView class to download a excel file. If it's not, I want to ...
0
votes
0answers
71 views
Spring 3 (annotation) with JExcelAPI
I'm trying to do this tutorial http://www.mkyong.com/spring-mvc/spring-mvc-export-data-to-excel-file-via-abstractjexcelview/ using Spring 3 and annotations.
So I have a WebAppConfig class
...
0
votes
0answers
88 views
How to get spring MVC to completely ignore the Accept Header
I have a pretty standard Spring MVC configuration using and .
I have a login page wired up to login.html using the following:
@RequestMapping(value = "/login.html", method = RequestMethod.GET)
...
0
votes
1answer
52 views
how to use @ContextConfiguration to configure values from another project
I configure something like this when the files are in the same project in spring
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
but I want to configure the few files ...
0
votes
2answers
62 views
Storing session data in controller
I'm new to Spring. I'm working on a MVC application that would works as follows:
1) user fills the form with data necessary to create the connection to some service
2) controller gets the data from ...
0
votes
1answer
70 views
“Manual” weaving of bean using @EnableAspectJAutoProxy found aspects
I am using a fully no-XML Spring setup, and I am successfully using @EnableAspectJAutoProxy with my @Configuration class and finding my aspect classes with a combination of @Aspect and @Component.
...
0
votes
2answers
151 views
spring @ExceptionHandler
all,
my controller:
@RequestMapping(method = RequestMethod.GET, value = "/search")
@ResponseBody
public CemeteryRestResponse<List<String>> search(
@RequestParam("location") ...
0
votes
3answers
133 views
NoUniqueBeanDefinitionException for Named classes
I am Using Spring 3.2.2 and was wondering if there was a way to inject beans by class type without explicitly giving them a string name. Ex:
@Named
public MyClass{
}
@Named
public MyOtherClass ...



