本篇内容介绍了“Spring中@Service注解的作用与@Controller和@RestController之间区别是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
一、@Service注解
@Service注解用于类上,标记当前类是一个service类,加上该注解会将当前类自动注入到spring容器中,不需要再在applicationContext.xml文件定义bean了。在Controller模块中可以通过@Autowired注入service类。直接调用service类中方法。
@Service
@Primary
public class YtDesignInfoServiceImpl implements YtDesignInfoService {
@Autowired
private YtDesignInfoMapper ytDesignInfoMapper;
@Override
public YtDesignInfo getItem(String GCID){
YtDesignInfoExample example = new YtDesignInfoExample();
YtDesignInfoExample.Criteria criteria = example.createCriteria();
criteria.andLProjectidEqualTo(GCID);
List<YtDesignInfo> ytDesignInfos = ytDesignInfoMapper.selectByExample(example);
return ytDesignInfos.get(0);
}
}
@RestController
@Api(tags = "YantuController", value = "岩土管理")
@RequestMapping("/yantu")
public class YanTuController {
@Autowired
private YtDesignInfoService ytDesignInfoService;
@Autowired
private YtDuanmianService ytDuanmianService;
@ApiOperation(value = "新增岩土成果的工程信息")
@PostMapping(value = "/addYanTuItemInfo")
public CommonResult<?> addYanTuInfo(Principal principal, @Validated YtDesignInfo ytDesignInfo) {
if (principal == null) {
return CommonResult.unauthorized(null);
}
int i = ytDesignInfoService.addItem(ytDesignInfo);
if (i>0) {
return CommonResult.success("上传成功");
} else {
return CommonResult.failed("上传失败");
}
}
}
二、@Controller和@RestController的区别
1. @controller注解
@Controller 将当前修饰的类注入SpringBoot IOC容器,使得从该类所在的项目跑起来的过程中,这个类就被实例化。当然也有语义化的作用,即代表该类是充当Controller的作用。
@ResponseBody 它的作用简短截说就是指该类中所有的API接口返回的数据,甭管你对应的方法返回Map或是其他Object,它会以Json字符串的形式返回给客户端,本人尝试了一下,如果返回的是String类型,则仍然是String。
假如返回类型是Map类型,但是没有加@ResponseBody注解,只有@Controller修饰的时候,Spring以为会返回一个View(也就是MVC中的那C)但是返回的东西却是一个Map,页面会报错。
@Controller
public class FileUploadController {
//跳转到上传文件的页面
//在对应的方法上,视图解析器可以解析return 的jsp,html页面,并且跳转到相应页面。
@RequestMapping(value="/gouploadimg", method = RequestMethod.GET)
public String goUploadImg() {
//跳转到 templates 目录下的 uploadimg.html
return "uploadimg";
}
//处理文件上传
//若返回json等内容到页面,则需要加@ResponseBody注解
//如果返回的是String类型,则仍然是String。
@RequestMapping(value="/testuploadimg", method = RequestMethod.POST)
@ResponseBody
public String uploadImg(@RequestParam("file") MultipartFile file,HttpServletRequest request) {
System.out.println("调用文件上传方法");
String contentType = file.getContentType();
String fileName = file.getOriginalFilename();
return filename;
}
}
2. @RestController注解
相当于@Controller+@ResponseBody两个注解的结合,返回json数据不需要在方法前面加@ResponseBody注解了,但使用@RestController这个注解,就不能返回jsp,html页面,视图解析器无法解析jsp,html页面
@RestController /* @Controller + @ResponseBody*/
public class HospitalController {
//注入Service服务对象
@Autowired
private HospitalService hospitalService;
/**
* 查询所有医院信息(未分页)
*/
//@RestController注解可以直接返回json数据
//@Controller注解无法返回json数据
@RequestMapping(value = "findAllHospital",method = RequestMethod.GET)
public List<Hospital> findAllHospital(){
List<Hospital> hospitalList= hospitalService.findAllHospital();
return hospitalList;
}
}