随笔分类 - springboot
摘要:@ResponseBody 在springboot中 使用@controller的情况下,return 字符串,会跳转到字符串的网络地址 而在添加了@ResponseBody在方法上时,会输出字符串,返回对象也能转换为json数据 @RequestBody 当传入的是对象,而不是参数时使用。
阅读全文
摘要:springboot pom.xml添加依赖: <!-- 热部署工具 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </depend
阅读全文