在使用Spring框架,引用Service时采用`@Autoried`时,Idea编译器会提示`Field injection is not recommended`,SpringTeam给出的解决方案为`Always use constructor based dependency injection in your beans. Always use assertions for mandatory dependencies`,翻译过来的意思是`在bean中始终使用基于构造函数的依赖项注入。请始终使用断言强制依赖`。本文将介绍如何解决这个问题。...