Spring Annotations concerns the use of all Annotations supported by the Spring Framework.
0
votes
1answer
13 views
Spring MVC @modelattribute in proxied controller
I have a controller which has an interface as proxy
@Controller
public class MyController implements IMyController{
public FormBean getCommand(){
return new FormBean();
}
public String ...
0
votes
0answers
18 views
Spring annotation based configuration for spring remote (HttpInvokerServiceExporter)
I am trying to create a service using spring http invoker. I looked at
http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/remoting.html#remoting-httpinvoker
It is all ...
0
votes
1answer
35 views
@Autowired not managed in spring mvc “Injection of autowired dependencies failed”
im trying to inject a bean into my class java ValiderBR
@Service
public class ValiderBR extends BusinessRule {
@Autowired
ILog logger;
...
}
but i have an error of injection caused by the ...
1
vote
1answer
20 views
Is there “best practice” for referencing Spring MVC mappings (annotations) in JSPs
I've got a Spring web application that I've inherited and now I'm extending. I've lived through the hell of massive, sprawling Spring XML files and a refactoring process - time I'll never get back. ...
3
votes
1answer
79 views
Spring ContentNegotiatingViewResolver - How to use bean name for jsp view not full url with path parameters
My servlet-context file has
<beans:bean
class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<beans:property name="useNotAcceptableStatusCode"
...
0
votes
1answer
32 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
0answers
54 views
Spring annotation based transaction is not working
Currently I am using Spring 3.0.5 jar files.
My Transactions are working fine when I am configuring everything with XML based, but that is the old mechanism to work with. I want my transaction should ...
0
votes
2answers
59 views
Java - Reflection - How to get @RequestHeader value using reflection
Following is my method :
@PreAuthorize("isAuthenticated() and hasPermission(#request, 'CREATE_REQUISITION')")
@RequestMapping(method = RequestMethod.POST, value = "/trade/createrequisition")
...
0
votes
1answer
63 views
Is there any way to override a bean discovered by component scan?
I have a java configuration class providing fooBean directly and barBean by component scan.
@Configuration
@ComponentScan(basePackages = { "com.blah" })
public class Config {
@Bean
public ...
0
votes
3answers
112 views
Get bean of @Service annotated class?
In my web application, I am not using applicationContext.xml. How can I get the bean of @Service annotated class?
If I used the applicationContext.xml in my web application, I have to load the ...
3
votes
4answers
161 views
@Cachable annotation does not work
We're using ehcache for caching purposes in our project.
import com.googlecode.ehcache.annotations.Cacheable;
// Other imports
@Component
public class Authenticator{
@Cacheable(cacheName = ...
0
votes
1answer
109 views
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'RegistrationBean' available as request attribute
I am getting this exception :
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'RegistrationBean' available as request attribute
This is my ...
1
vote
2answers
50 views
@Value annotation doesn't return a value
I have a class FichierCommunRetriever that use the @Value annotation of Spring. But I am struggling to make it work.
So in my application.properties I have :
...
0
votes
0answers
49 views
Injecting property file into Map in Spring Bean
Am working with Spring annotation and after analysis I was able to achive my work with xml but I could get solution by annotation.
Let me discribe the requirement. I've a property file with key value ...
1
vote
1answer
309 views
How to include jsp pages using spring form tag?
Actually i'm using Spring., in that have user.jsp
user.jsp have 3 seperate divisons like..
1.Personal 2.Educational 3. Awards , Section so each section have different forms,jsp i'm created
Now i'm ...
0
votes
1answer
57 views
@Value place holder not resolving values in certain spring beans
I have a situation and im trying to figure out why it is so. The scenario is I have a class A that implements an operation exposed by a webservice. For each request for the operation a new instance of ...
0
votes
3answers
116 views
AOP using AspectJ not working in spring?
My Aspect class will be ,
@Configuration
@EnableAspectJAutoProxy
@Component
@Aspect
public class AspectClass {
@Before("execution(* com.pointel.aop.test1.AopTest.beforeAspect())")
public ...
0
votes
1answer
60 views
Using Constructor Arguments with Spring cache:annotation-driven
I receive the following exception when I add cache:annotation-driven to my application context:
Superclass has no null constructors but no arguments were given
I have a class called ...
2
votes
0answers
41 views
Available paths listing for Spring actions
I have an application which exposes RESTful actions using spring annotations and Spring MVC.
It looks like
@RequestMapping(value = "/example/{someId}",
method = RequestMethod.GET, ...
1
vote
1answer
84 views
How to call JavaScript after Spring validation get success?
I am doing a Chat project in Spring.It consists of only one JSP page.
In that jsp I have two input text boxes (name,message), a send button and a text area to append the messages. I did the textbox ...
0
votes
1answer
77 views
Spring has @Component annotation, what is the real purpose of the annotations @Repository, @Service, @Controller?
I've developed web applications for a few years with Spring framework. Recently, a fresher of my team asked me a question, Spring has @Component annotation, what is the real purpose of the annotations ...
0
votes
1answer
60 views
Error while applying session scope to a bean in spring
I tried to change the scope of a bean using @Scope annotation. That bean is actually working as MessageSource and used for internationalization purpose.
The schema in mvc-dispacher-servlet.xml is as ...
0
votes
0answers
264 views
Spring 3.2 Transaction annotation rollbackFor is not working using DataSourceTransactionManager
Here I have written some basic code for transaction where my roleback is not working(FYI: I am using Postgre database). I am new to spring. If there are any mistakes please correct me. Here is by ...
0
votes
0answers
17 views
How do I set a Custom Key Generator in Spring cache configuration
How do I set a Custom Key Generator in Spring cache configuration? I tried the following, but the DefaultKeyGenerator always gets called.
Spring documentation is also sparse about how to achieve ...
0
votes
0answers
209 views
Spring @Async with Future and Callable
I am trying to implement a generic class that executes a callable asynchronously, but I am not sure about the semantics.
@Component
public class MyCallerImpl implements MyCaller {
@Async
...
0
votes
0answers
170 views
@Secured annotation is not working for my Spring 3.1 based app in JBoss EAP 6
I am using Spring 3.1 and Spring Security 3.1 and JBoss EAP 6.
I have been trying to use the Spring security @Secured annotation, but it doesn't work. I think i have done things right, but clearly ...
0
votes
2answers
214 views
Handling multiple validation annotations error messages
I am trying out Validations in SpringMVC using annotations...
I used 2 annotations for a field to validate
@NotEmpty(message="required")
@Size(min="3" max="8" message="Out of range")
private ...
0
votes
2answers
202 views
Spring Task Executor not firing until previous task is complete
I have a method in a class that has the @Scheduled annotation
@Scheduled(cron = "* * * * * *")
public void doSomething() {
}
This should execute every second (assuming the cron statement is ...
1
vote
2answers
253 views
Spring Android POST no return type application/octet-stream in ResponseEntity
I am working with a Node.js server running Express 3.0.
During one part in my application I POST json to a URI to purchase a powerup at /api/transactions/powerup. This has several return options.
...
0
votes
2answers
73 views
Should I use annotations in spring for my project? [closed]
I just had one query:
Iam developing one internal project myself (mixing of spring, hibernate, dao)..
Iam thinking like this: Just using annotations only for hibernate and xml configurations in case ...
1
vote
0answers
71 views
Can we use Annotations completely for the whole project?
I just wanna ask one thing regarding Annotations. I searched in google a lot and I read from many sites, BUT still iam not convinced. So, thats why i wanna ask myself.
Here are the queries:
a) I ...
0
votes
1answer
266 views
Inject a list of beans using Spring @Configuration annotation
I've got a Spring bean, and in the Spring Bean I have a dependency on a list of other beans. My question is: how can I inject a Generic list of beans as a dependency of that bean?
For example, some ...
1
vote
2answers
284 views
Spring 3.0 @Scheduled annotation not working as expected
I use the @Scheduled annotation to make the function myProcess() in a Spring MVC application (version 3.0.6.RELEASE running on Apache Tomcat/7.0.26) run once every hour (3,600,000 ms = 1 hour):
...
0
votes
2answers
62 views
How to find the controller mapped to the URL in spring annotations
When am asked to fix an issue, by understanding the code-flow, i find the URL which is been hit and then i go to the controller which is mapped to that particular URL
I find the process very tedious ...
1
vote
2answers
222 views
Beans Java Based Configuration in Spring Framework, don't work
I am reading this article about Spring Java Based Configuration. I am creating an example similar to the one in this tutorial, but I'm using Maven for the build process.
I have added the following ...
1
vote
3answers
68 views
Is it possible to Perform an action when the method exits using an annotation?
Is it possible to perform an action at the end of a method, in other words when the function control returns to the caller(either because of exception or normal return) using an annotation ?
Example:
...
0
votes
1answer
35 views
What is a Spring “stereotype”?
On a SpringSource blog entry, the following sentence references a stereotype.
Because @Controller is a specialization of Spring's @Component
Stereotype annotation, the class will automatically ...
1
vote
1answer
284 views
scheduling a job with spring programmitically with a fixedrate set from a database value/user input
currently I have this :
@Scheduled(fixedRate=5000)
public void getSchedule(){
System.out.println("in scheduled job");
}
I could change this to use a reference to a property
...
1
vote
1answer
1k views
how to read properties file in spring project?
Before post this Question, I google to get Properties from Spring project(Its NOT web-based project). I am confused as every one are talking about application-context.xml and have configuration like
...
1
vote
1answer
50 views
spring MVC extended controllers don't resolve
I have the following:
@Controller
@RequestMapping("/admin")
public class AdminController extends BaseHtmlController{
@Autowired
protected DeviceCustomerMap deviceCustomerMap;
@Autowired
...
0
votes
0answers
181 views
BindingResult does not show any errors when there is an error
I am using annotation based validation for one of my forms and I am not able to show any errors using the form:errors tag I used in JSP file. When I try to debug it, I found out that the BindingResult ...
1
vote
1answer
242 views
Cannot find the JBoss ConnectionFactory with a JNDI lookup in Spring annotation configuration
Despite what seems to be a successful binding of the JBoss (AS 7.1.1.Final) connection factory:
[org.jboss.as.messaging] (MSC service thread 1-9) JBAS011601: Bound messaging object to jndi name ...
0
votes
0answers
103 views
Spring MVC 3 - Request Mapping with only XML. No annotation No dependency on Spring
I've been looking through the Internet for my answer to this question but I could not find it.
Q. How to do Request mapping to a multi action controller(that doesn't do just one 'handleRequest') ...
1
vote
0answers
156 views
How can the Spring Environment be injected properly in one method but not another?
neo4jDatabase() is fine but environment is always null in graphDatabaseService()... how/why?
@Configuration
@PropertySource("classpath:/neo4j.properties")
...
0
votes
1answer
126 views
Spring annotation for form validation for issue?
Sorry for asking the simple question. I searched a lot , but can't find the exact solution.
In my spring bean class I have int field like (private int id) . I used @NotEmpty annotion.
I need to allow ...
0
votes
0answers
29 views
How to change or add @ContextConfiguration in runtime for a single test case alone?
I am having a test suite which has couple of test cases and for a particular test case i need to add one invalid xml file to the @ContextConfiguration and need to remove the file after the test case ...
0
votes
1answer
69 views
How do I find all documents (in a collection) in mongodb using the @Query annotation
The @Query annotation makes it possible to specify a MongoDB query for a particular method. An example might be @Query("{ 'firstname' : ?0 }"). But what should the parameter to @Query be if I just ...
1
vote
1answer
160 views
What is the correct annotation configuration for Spring data and neo4j
I'm trying to configure Spring-data with Neo4j with an @configuration class but I cannot find any reference material on how to do that properly and I'm running into one issue after the next. Here's ...
0
votes
2answers
1k views
org.springframework.web.util.NestedServletException: Request processing failed
I am doing CRUD using spring jdbc template.
insert,select and delete operations are working fine but I got these following exception in update process.
...
4
votes
1answer
162 views
Spring custom annotation: how to inherit attributes?
I am creating my own custom shortcut annotation, as described in Spring Documentation:
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Transactional(value = ...



