Mybatis-Spring
Mybatis-Spring copied to clipboard
在controller中注入的service是实现类而不是接口吗?
@Service
public class UserServiceImpl extends BaseService<User> implements IUserService {
}
@Controller
@RequestMapping("/user")
public class UserController {
@Autowired
private UserServiceImpl userService;
}
都行。