题目详情
单选题 t_dress表相关控制器框架正确代码是( )
A. import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/api/user")public class DressContrroller { @Autowired private DressService dressService; }
B. import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;@RequestMapping("/api/user")public class DressContrroller { @Autowired private DressService dressService; }
C. import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class DressContrroller { @Autowired private DressService dressService; }
D. import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/api/user")public class DressContrroller { @Autowired public DressService dressService; }

学科:Java
时间:2023-12-05 07:27:03
相关题目
相关作业
