摘要: 1、直接搜索"注解名.class" 以若依项目为例,我要寻找如下注解的解析情况 /** * 自定义注解防止表单重复提交 * * @author ruoyi * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Do 阅读全文
posted @ 2023-07-26 23:28 莫得感情的肝帝 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 要求: 将查询出来的数据中的性别不显示为1、2,如果是1显示为男,2显示为女 SQL select name,case sextype when '1' then '男' else '女' end 性别 from employee 阅读全文
posted @ 2022-07-29 22:20 莫得感情的肝帝 阅读(2427) 评论(0) 推荐(0) 编辑
摘要: 问题: 1 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.atguigu.ucenterservice.mapper.UcenterMemberMapper.selectReg 阅读全文
posted @ 2022-07-20 00:03 莫得感情的肝帝 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 问题 在分页代码中,data.current+1变成了字符相加,导致分页的【下一页】效果显示不出来,但是-1就没有这个问题 解决: 1 <a :class="{undisable: !data.hasNext}" href="#" title="后一页" 2 @click.prevent="goto 阅读全文
posted @ 2022-07-13 16:38 莫得感情的肝帝 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 问题: 存在redis里面的内容有日期,但是存进去的格式不对。 1 @Cacheable(value = "banner", key = "'selectIndexList'") 2 @ApiOperation(value = "获取首页banner") 3 @GetMapping4 public 阅读全文
posted @ 2022-07-07 19:22 莫得感情的肝帝 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 报错: 在用mybatis-plus查询的时候有报错:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.eduservice.mapper.EduCourseMapper.getC 阅读全文
posted @ 2022-07-03 19:07 莫得感情的肝帝 阅读(23) 评论(0) 推荐(0) 编辑
摘要: npm install 真是够了,从来没有不报红的时候o(╥﹏╥)o!! 这次的错误感觉是没有安装node-sass 又试了cnpm install 也不行 解决办法: npm cache clear --forcecnpm install --save-dev node-sasscnpm inst 阅读全文
posted @ 2022-06-30 22:14 莫得感情的肝帝 阅读(2301) 评论(0) 推荐(0) 编辑
摘要: 网上搜索到了解决办法: 在url上加上编码参数 characterEncoding=UTF-8 spring.datasource.url=jdbc:mysql://*******.89:3306/**?serverTimezone=GMT%2B8&characterEncoding=UTF-8 阅读全文
posted @ 2022-06-30 18:35 莫得感情的肝帝 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 问题: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `org.springframework.security.core.GrantedAuthority` ( 阅读全文
posted @ 2022-06-11 00:33 莫得感情的肝帝 阅读(1778) 评论(0) 推荐(0) 编辑
摘要: 问题 最近在开发的时候遇到的,element-ui的侧边导航栏老是有个滚动条出现,影响美观度。 解决 在el-menu标签外部包裹一层el-aside标签,然后赋予样式如下 <el-aside width="200px"> <el-menu router unique-opened> <el-sub 阅读全文
posted @ 2022-06-10 15:21 莫得感情的肝帝 阅读(2343) 评论(0) 推荐(0) 编辑