2023/4/13

jeecgboot修改非超管用户不可以看见,系统超管用户和超管角色

1.修改系统用户查询接口,SysUserController-108行添加 LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); String account =sysUser.getUsername(); //登录用户不是超管,不显示超管…

  • java jeecgboot springboot
  • 2023/4/13
  • 745
  • 2022/11/27

    java微信支付

    1.初始化jsapi 后台 /** * 获取微信JSAPI初始化配置 * @return */ @GetMapping("/getWxconfig") public Result getWxconfig(@RequestParam String url) throws NoSuchAlgorithmE…

  • java springboot 微信支付
  • 2022/11/27
  • 702
  • 2022/11/22

    springboot代码规范检查 / alibaba代码检查IDAE插件 p3c-tpm

    阿里巴巴Java编码指南(XenoAmess TPM) 安装方式 File>setting>plugin>Marketplace 搜索p3c

  • springboot
  • 2022/11/22
  • 706
  • 2022/10/2

    springboot mybaits 使用原生sql查询 不返回实体类

    mapper package org.jeecg.modules.wenlv.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; impor…

  • jeecgboot mybatis-plus springboot
  • 2022/10/2
  • 746
  • 2022/7/20

    Springboot 微信支付回调 获取post body里面的数据

     public  Result getPayNotify(HttpServletRequest request,@RequestBody JSONObject jsonObject ){         String signature = request.getHeader("Wechatpay-Signature"…

  • springboot 微信支付
  • 2022/7/20
  • 1,199
  • 2022/7/15

    springboot 下载网络图片导出压缩包

    public ResponseEntity getTaizhangZip() throws IOException {         SimpleDateFormat simpleDateFormat = new Simpl…

  • springboot vue
  • 2022/7/15
  • 829
  • 2022/7/13

    java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).

    在使用LIKE关键字模糊查找的时候,参数需要使用LIKE '${name}'而不能使用#{name}, ${name}'和#{name}区别: #{name}解析后会产生一个单号,和JDBC里面的PreparedStatement的用法啊一样,向上面这种用…

  • java mybatis-plus springboot
  • 2022/7/13
  • 804