Search before asking
Apache SkyWalking Component
Java Agent (apache/skywalking-java)
What happened
https://github.com/apache/skywalking-java/pull/739/files#r2068184158
What you expected to happen
The application can start normally.
How to reproduce
A minimal example to reproduce the issue, from the example code shown in this SO question.
@SpringBootApplication
@EnableTransactionManagement
public class StackoverflowApplication {
@Autowired private SomeService service;
public static void main(String[] args) {
SpringApplication.run(StackoverflowApplication.class, args);
}
}
@Service
class SomeService {
@Override
@Transactional
public void handle() { }
@Trace // Use Trace annotation in order to let SkyWalking Java Agent to enhance this class
public void methodToBeTraced() {}
}
Anything else
No response
Are you willing to submit a pull request to fix on your own?
Code of Conduct
Search before asking
Apache SkyWalking Component
Java Agent (apache/skywalking-java)
What happened
https://github.com/apache/skywalking-java/pull/739/files#r2068184158
What you expected to happen
The application can start normally.
How to reproduce
A minimal example to reproduce the issue, from the example code shown in this SO question.
Anything else
No response
Are you willing to submit a pull request to fix on your own?
Code of Conduct