update 同步升级 ruoyi-vue 3.5.0
| | |
| | | |
| | | ### 其他 |
| | | |
| | | * 同步升级 RuoYi-Vue 3.4.0 |
| | | * 同步升级 RuoYi-Vue 3.5.0 |
| | | * 单模块 fast 分支 [RuoYi-Vue-Plus-fast](https://gitee.com/JavaLionLi/RuoYi-Vue-Plus/tree/fast/) |
| | | |
| | | ## 关注作者(扫码请备注: "加群") |
| | | |
| | |  |
| | | |
| | | ## 捐献作者 |
| | | 作者为兼职做开源,平时还需要工作,如果帮到了您可以请作者吃个盒饭 |
| | | |
| | | |
| | | ## 重点注意事项 |
| | | |
| | | 若依文档对事务注解的描述 [关于事务](https://doc.ruoyi.vip/ruoyi/document/htsc.html#%E4%BA%8B%E5%8A%A1%E7%AE%A1%E7%90%86) 以下对多数据源事务做补充: |
| | |
| | | <velocity.version>1.7</velocity.version> |
| | | <jwt.version>0.9.1</jwt.version> |
| | | <mybatis-plus.version>3.4.3</mybatis-plus.version> |
| | | <hutool.version>5.5.8</hutool.version> |
| | | <hutool.version>5.6.5</hutool.version> |
| | | <feign.version>2.2.6.RELEASE</feign.version> |
| | | <feign-okhttp.version>11.0</feign-okhttp.version> |
| | | <spring-boot-admin.version>2.3.1</spring-boot-admin.version> |
| | |
| | | package com.ruoyi.common.filter; |
| | | |
| | | import cn.hutool.core.lang.Validator; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import cn.hutool.http.HtmlUtil; |
| | | import org.apache.commons.io.IOUtils; |
| | | import org.springframework.http.HttpHeaders; |
| | |
| | | public boolean isJsonRequest() |
| | | { |
| | | String header = super.getHeader(HttpHeaders.CONTENT_TYPE); |
| | | return StringUtils.startsWithIgnoreCase(header, MediaType.APPLICATION_JSON_VALUE); |
| | | return StrUtil.startWithIgnoreCase(header, MediaType.APPLICATION_JSON_VALUE); |
| | | } |
| | | } |
| | |
| | | package com.ruoyi.framework.aspectj; |
| | | |
| | | import cn.hutool.core.lang.Validator; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.ruoyi.common.annotation.Log; |
| | |
| | | { |
| | | for (int i = 0; i < paramsArray.length; i++) |
| | | { |
| | | if (StrUtil.isNotNull(paramsArray[i]) && !isFilterObject(paramsArray[i])) |
| | | if (Validator.isNotNull(paramsArray[i]) && !isFilterObject(paramsArray[i])) |
| | | { |
| | | Object jsonObj = JSON.toJSON(paramsArray[i]); |
| | | params += jsonObj.toString() + " "; |
| | |
| | | <span>更新日志</span> |
| | | </div> |
| | | <el-collapse accordion> |
| | | <el-collapse-item title="v2.1.1 - 2021-5-21"> |
| | | <el-collapse-item title="v2.1.2 - 2021-5-21"> |
| | | <ol> |
| | | <li>update springboot 升级 2.3.11</li> |
| | | <li>update mybatis-plus 升级 3.4.3 分页Plus对象适配更新</li> |
| | |
| | | data() { |
| | | return { |
| | | // 版本号 |
| | | version: "2.1.0", |
| | | version: "2.1.2", |
| | | }; |
| | | }, |
| | | methods: { |