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
  • 2022/6/20

    java map 排序

    List<Map.Entry<StringInteger>> list = ArrayList<>(tzmap.entrySet())Collections.(list(o1o2) ->o2.getValue().compareTo(o1.getValue()))Map<StringInteger>&n…

  • java springboot
  • 2022/6/20
  • 703
  • 2022/6/17

    QueryWrapper

    QueryWrapper ge(大于等于)、 gt(大于)、 le(小于等于)、 lt(小于)

  • java mybatis-plus springboot
  • 2022/6/17
  • 764
  • 2022/6/7

    mybaits plus 自定义sql使用使用 querywrapper

    xml 添加 ${ew.customSqlSegment} 方法添加 @Param(Constants.WRAPPER) QueryWrapper<StaffBasePage> queryWrapper public IPage<StaffBasePage> selectbysql(Page page,@Par…

  • mybatis-plus
  • 2022/6/7
  • 779
  • 2022/3/20

    java json转map

    String formjson = jsonData.get().toString()Map<StringString> map1 = HashMap()Gson gson = Gson()map1 =   gson.fromJson(formjsonTy…

  • java
  • 2022/3/20
  • 682
  • 2021/3/17

    springboot拦截器连接数据库实现

  • java springboot
  • 2021/3/17
  • 1,019