Open zhuyixiang opened 4 years ago
Please provide a reproduction case in the agent-testweb.
No need example。 spring boot main code like this。
public static void main(String[] args) {
System.out.println(TestController.class.getName());
System.out.println(TestService.class.getName());
SpringApplication.run(DemoApplicationB.class, args);
}
then the Controler and Service will not be track by pinpoint
Please provide a reproduction case in the agent-testweb.
No need example。 spring boot main code like this。
public static void main(String[] args) { System.out.println(TestController.class.getName()); System.out.println(TestService.class.getName()); SpringApplication.run(DemoApplicationB.class, args); } then the Controler and Service will not be track by pinpoint
In My Application, for some reason, we load the spring bean class before spring package scan. The pinpoint agent and spring plugin will not enhance it, so the of Spring Bean's span was missing.