package com.cku.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import com.cku.service.CkuUserServiceImpl; @Controller @RequestMapping(value="ckuUser") public class CkuUserController { @Autowired public CkuUserServiceImpl ckuUserService; }