有接口方法的实现类里的注解不生效。
例子:
@Controller类:DemoController
接口:DemoService
接口的实现@Service类:DemoServiceImpl
其中的同步方法为:incr()
DemoController中的实例化为
@Autowired
private DemoService demoService;
调用的时候为:
();
那么这个异步没有效果。
解决方法:在实现类中调用一个没有接口的类才可以。
有接口方法的实现类里的注解不生效。
例子:
@Controller类:DemoController
接口:DemoService
接口的实现@Service类:DemoServiceImpl
其中的同步方法为:incr()
DemoController中的实例化为
@Autowired
private DemoService demoService;
调用的时候为:
();
那么这个异步没有效果。
解决方法:在实现类中调用一个没有接口的类才可以。