-
Since `spring-boot-starter-aop` pulls in `spring-aspects` and `aspectj` it might be better to rename it. Without those dependencies it only pulls in the `spring-aop` modules which doesn't really need …
-
### Description
This is an umbrella issue that aims to reduce the amount of Aspect Oriented Programming in the core.
#### Background
Flow was created as framework for Neos. It seems weird tha…
-
**Affects:** spring-aop:5.0.9.RELEASE, spring-boot-starter-aop:2.0.5.RELEASE
```java
public interface FooService {
@MyAnnotation
void hello();
}
public class FooServiceImpl implements…
-
in `src/MyAspect.aj`
```
public aspect MyAspect {
before() : call(void Foo.bar()) {
System.out.println("before bar");
}
void around(): call(void Foo.bar()) {
Syste…
-
Japanese here:
LastaFluteをJava21で動かそうとすると、Java9のJigsawの影響とJavaa16からillegal-accessがデフォルトでstrictになったことによって、AopProxyがまともに動かない。
↓落ちるサンプルコード (Java17環境)
```
public void test_demo() throws Exception …
-
I'm pretty sure several years ago looking at whatever tech on spring boot's docs it would advise to pull certain starters. These days I don't see any mention of those starters anywhere except this [si…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
Given some class `SomeDto` with a private constructor:
After a full cache flush, a proxy cla…
-
It is my first comment in GitHub ever. I'd like use @Loggable because is awesome, but I have following problem. When I run my app in local env it is everything is good, but in production i have proble…
-
## **General description of the problem:**
At the moment, if we want to use a simple boxed approach to writing aspects, then we will face the problem that writing aspects that will belong to the view…
-
I have struggled for 2 days trying to get `@Loggable` annotation working in my JBoss web application. Maven appears to correctly compile and weave the classes, but i am unable to get JBoss to use the…