摘要: springboot项目实体类引入@Data注解后,调用时找不到get,set方法,主要检查以下两点: 在开发工具中file->settings->plugins-搜索lombok插件,如未安装,需要安装一下 设置 Enable annotation processing选中 阅读全文
posted @ 2021-01-18 21:39 低调码农哥! 阅读(2585) 评论(0) 推荐(0)
摘要: 使用gitee在服务器创建要上传的分支地 将本地项目,初使化git目录 git init 将你本地仓库与码云上的远程仓库关联起来 git remote add origin 远程仓库地址 git remote add origin https://gitee.com/howdychen/spring 阅读全文
posted @ 2021-01-18 20:51 低调码农哥! 阅读(1216) 评论(0) 推荐(0)
摘要: 在开发中,给前端定义请求参数,有时某个字段,只在后端使用,前端不使用,可以用JsonIgnore特性性 /// <summary> /// 用户权限 /// </summary> [JsonIgnore] public bool userPower { get; set; } = true; 阅读全文
posted @ 2021-01-18 17:57 低调码农哥! 阅读(216) 评论(0) 推荐(0)