4. CartService 인터페이스에 update() 메서드를 선언합니다.
코드 14-14 CartService.java
package com.springmvc.service;
...
public interface CartService {
...
void update(String cartId, Cart cart);
}
5. CartServiceImpl 클래스에 update() 메서드를 구현합니다.
코드 14-15 CartServiceImpl.java
package com.springmvc.service;
...
@Service
public class CartServiceImpl implements CartService {
@Autowired
private CartRepository cartRepository;
...
public void update(String cartId, Cart cart) {
cartRepository.update(cartId, cart);
}
}