Mybatis-Spring icon indicating copy to clipboard operation
Mybatis-Spring copied to clipboard

在controller中注入的service是实现类而不是接口吗?

Open shuzheng opened this issue 10 years ago • 1 comments

@Service
public class UserServiceImpl extends BaseService<User> implements IUserService {

}
@Controller
@RequestMapping("/user")
public class UserController {
    @Autowired
    private UserServiceImpl userService;
}

shuzheng avatar Aug 16 '15 12:08 shuzheng

都行。

abel533 avatar Aug 18 '15 13:08 abel533