在UserMapper上添加@Component即可 @ComponentpublicinterfaceUserMapper { List<User>selectAll(); User selectUserById(intid); } 实际上不加也能正常运行,可以在IDE中将警告关闭。
在我的主文件中,我有这些注释:@SpringBootApplication(scanBasePackages = {"com.application.Config","com.application"})@ComponentScan({"com.application.Config","com.application"})如果有帮助,我将在这种情况下使用我的 bean:@Servicepublic class UserService { @Autowired private UserDAO DAO; public User ...
在UserMapper上添加@Component即可 @ComponentpublicinterfaceUserMapper { List<User>selectAll(); User selectUserById(intid); } 1. 2. 3. 4. 5. 6. 7. 实际上不加也能正常运行,可以在IDE中将警告关闭。