Tagged Questions
0
votes
1answer
66 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 ...
1
vote
1answer
630 views
Spring 3.2 AOP - Intercepting methods by annotation
I'm trying to intercept any method tagged w/ a custom annotation and the reason you read this is because I can't get it to work. I've been following simple examples but can't get it to work.
Here is ...
0
votes
0answers
45 views
how can annotated aspectJ realize AOP on annotated controller in Spring mvc?
I've searched a lot of methods from google, but none of them worked well! My code snippets are as follows:
Annotated Controller:
@Controller
@RequestMapping("/user")
public class UserController {
...
0
votes
1answer
494 views
One to One Mapping between two tables in Hibernate annotations
I have two tables
CREATE TABLE `cb_jobs` (
`JOB_IDENTIFIER` INT(11) NOT NULL,
`CB_CREDENTIAL_TYPE_IDENTIFIER` INT(11) NOT NULL
`IS_DELETED` TINYINT(1) NULL DEFAULT '0',
...
2
votes
1answer
247 views
Writing interceptors for parameter annotations using Guice
Main References for My Question:
Writing Method Interceptors for Google Guice: http://code.google.com/p/google-guice/wiki/AOP
The JavaDoc for the MethodInterceptor interface: ...
0
votes
1answer
61 views
advice for annotation on either class or method
I have the following problem:
I have create annotation for Security:
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
@Inherited
@Documented
public @interface ...
1
vote
1answer
142 views
AOP AspectJ static field initialization with Annotated (marked) Classes
I have a static field public static Class[] items; I want it to be filled at the start of the application with classes which have @ItemExample annotaion. Example classes(simplified):
public class ...
1
vote
1answer
234 views
Spring @Sheduled Annotation for Inherited Classes
I am trying to use @Scheduled annotation for a service layer class. The class also gets monitored by a logging service through AOP.
When I make the service class implement an interface, Spring throws ...
1
vote
1answer
56 views
Tracking ownership/ancestor-hierarchies/group-membership via annotations/bytecode-weaving?
In GUI frameworks it's common to track parent/child relationships explicitly - given an arbitrary GUI component one can navigate up through the hierarchy of components that "own" it.
The parent ...
0
votes
1answer
78 views
Implementing @Before/@Post something with Spring AOP
I need to intercept all the methods of type writer.write(myObj) , and if and only if myObj contains a method annotated with @BeforeWrite, execute this method.
I am kind of confused because I can ...
0
votes
1answer
199 views
Markers for advised methods in eclipse
In a project we use annotions to define aspects.
Unfortunately I can't get eclipse to show a marker next to the advised methods.
In another project we use XML to define the aspects and eclipse shows ...
0
votes
2answers
194 views
using annotations in spring pointcut
I am using annotation to indicate that an advice needs to be applied to the method.
I have the two methods in an interface called IMaintenanceDAOSupport
@AuditLogging
void insert(M domainobject, ...
1
vote
1answer
1k views
Aspect not excecuting at runtime (Spring 3, AspectJ)
I have created an Aspect but it doesn't seem to be working, I see nothing in the log, also no error messages or anything in the log that help me.
The repository gets Autowired by Spring into another ...
0
votes
2answers
809 views
How to generate proxy class from interface using pure annotations in Spring 3?
currently I'm creating proxy classes from interfaces with spring 3 xml config like this:
<bean id="abstractDaoTarget" class="mypackage.GenericDaoImpl" abstract="true" />
<bean ...
0
votes
2answers
264 views
Annotate Java method for logging its result and exceptions
Is it possible to log result,that method returned with annotation?
or specific Exceptions,that was thrown by method?
Can't find return value for method m or something like that ,using this call:
for ...
0
votes
1answer
86 views
Using Aspect-Orient-Programming in Java with annotation-labeled methods
I have a JAX-RS based (RESTEasy) REST server that uses Java annotations to label resource methods with URLs, etc. For example, a methods can have the annotations
@javax.ws.rs.GET
...
0
votes
1answer
184 views
java send email using annotations and aop
I want to send emails only if they have an annotation in the method, using spring AOP. But how do I get the values in objects using annotation. For example, I have the following method. By using AOP, ...
1
vote
1answer
64 views
Using AOP or Annotations to extend a service functionality
I would like to know what is the best way in which I can extend an existing functionality (probably by using AOP or Annotations). The scenario which I am looking for is.
We have one service say ...
0
votes
2answers
161 views
spring AOP with annotations issue
i have an annotation in my app
@Trans
that i would like AOP to intercept and manage the transaction for. is there a tutorial out there that can tell me how to do this in spring 3?
4
votes
1answer
2k views
Get annotated parameters inside a pointcut
I have two annotation @LookAtThisMethod and @LookAtThisParameter, if I have a pointcut around the methods with @LookAtThisMethod how could I extract the parameters of said method which are annotated ...
1
vote
0answers
419 views
Anyone have a Spring AOP @DeclareParents example?
I've been trying to get this to work for a few days and have been failing miserably at it. I cannot seem to get my class cast properly to an Introduced interface. I'm using Spring 3.0.5.
Does anyone ...
3
votes
1answer
446 views
Looking for method argument validation framework based on AOP and annotations
I'm looking for argument validation framework which:
1) Allows specifying argument constraints via annontations (like OVal, JaValid)
2) Validation code automatically injected (during compilation or ...
3
votes
1answer
137 views
using spring's @Transactional on a method which also makes use of aop:after advice
i was trying to see if there's already a similar question but couldn't find it so, here it is.
we have a legacy code where a single BO makes method calls to many DAOs using reflection.
i have ...
5
votes
4answers
4k views
Java - Register all classes annotated with @MyAnnotation
I have an annotation @MyAnnotation and I can annotate any type (class) with it. Then I have a class called AnnotatedClassRegister and I would like it to register all classes annotated with ...
4
votes
2answers
986 views
Telling IntelliJ IDEA which methods not to identify as unused
IntelliJ IDEA has a handy feature to detect unused methods and show them in grey, hinting a potential warning for dead code.
Some methods, however, are not executed directly but via reflection. A ...
1
vote
1answer
888 views
Shiro Annotations on a jersey resource
when I am using shiro to do @RequiresAuthorization on a jersey resource i'm getting the following exception:
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named ...
0
votes
1answer
421 views
Accessing Annotation-value in advice
In my application I have methods annotated like this:
@SomeAnnotation(key1="value1", key2 ="value2")
public void myMethod()
I have defined the following apsect to perform some action on executing ...
4
votes
2answers
3k views
Pointcut matching methods with annotated parameters
I need to create an aspect with a pointcut matching a method if:
it is annoted with MyAnnotationForMethod
One of its parameters (can have many) is annotated with @MyAnnotationForParam (but can have ...
2
votes
1answer
769 views
AOP with Local Variable Annotations
I want to use local variable annotations to do better AOP. One idea is to implement the Future<T> concept with a proxy using an annotation.
@NonBlocking ExpensiveObject exp = new ...
7
votes
1answer
3k views
Pointcut matching methods with annotated parameters
I need to create an aspect with a pointcut matching a method if:
Is public
Its class is annotated with @Controller (Finally does not)
One of its parameters (can have many) is annotated with ...
0
votes
2answers
120 views
Marking a 3rd party class property as required (Java/Spring)
Recently, I hit a very perplexing error while trying to clean up my spring configs. The exception was being thrown from deep within a third party library and was basically an obfuscated NPE.
What I ...
10
votes
9answers
4k views
incompatible types found: required: default enums in annotations
[javac] C:\ws\galileo\test\Cacheable.java:13: incompatible types
[javac] found : com.io.CacheType
[javac] required: com.io.CacheType
[javac] public CacheType id() default CacheType.COMMON;
I ...
4
votes
3answers
1k views
Adding validations to Java Beans via Annotations
I want to add validations to a Java Bean. For example, I want to do the following:
@MaxLength(50)
@RequiredField
public void setEmployeeName(String name){
.....
}
I know I can write code that ...
2
votes
3answers
8k views
Java: Simple technique for annotation-based code injection?
Is there a way to make this code work?
LogonControl.java
@Audit(AuditType.LOGON)
public void login(String username, String password) {
// do login
}
AuditHandler.java
public void audit(AuditType ...
4
votes
2answers
5k views
Accessing HttpServletRequest from AOP advice in Spring 2.5 with annotations
I have tried to find the answer to this question on both the Spring forum and by searching StackOverflow. I have found a lot of pages describing horrible architectures and asking for about the same ...
5
votes
3answers
3k views
Configurable vs Component with Spring and AspectJ
When using AspectJ, why use @Component over @Configurable.
I've got Spring and AspectJ setup for @Transactional support, aspects on self-invocation, and injection into JPA entities. This works great. ...
