摘要: 问题:springboot启动时报如下错误 Failed to process import candidates for configuration class […Application] … AutoConfigure cycle detected between TransactionAut 阅读全文
posted @ 2022-04-04 12:00 寒冷的雨呢 阅读(10271) 评论(0) 推荐(0)
摘要: 错误提示: Error creating bean with name 'rabbitConnectionFactory': Singleton bean creation not allowed while singletons of this factory are in destruction 阅读全文
posted @ 2022-03-21 18:07 寒冷的雨呢 阅读(9171) 评论(0) 推荐(0)
摘要: 错误提示: 命令行过长。要为 RunshiCoreApplication 或也为 Spring Boot default 配置 缩短命令行吗 或 Error running 'Application': Command line is too long. Shorten command line f 阅读全文
posted @ 2022-03-21 17:57 寒冷的雨呢 阅读(5646) 评论(0) 推荐(0)
摘要: node -v npx node-sass -v This usually happens because your environment has changed since running `npm install`. Run `npm rebuild node-sass` to downloa 阅读全文
posted @ 2022-03-16 18:31 寒冷的雨呢 阅读(3840) 评论(0) 推荐(0)
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-13 10:25 寒冷的雨呢 阅读(3428) 评论(0) 推荐(0)
摘要: 横轴: xAxis:[ axisLabel: { rotate: -25, //旋转度数 fontSize: 14 }, 或 axisLabel:{ rich: { color1: { color: "#53772d", fontSize: 20, fontWeight: "bold" }, col 阅读全文
posted @ 2022-03-11 16:30 寒冷的雨呢 阅读(544) 评论(0) 推荐(0)
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-11 15:51 寒冷的雨呢 阅读(497) 评论(0) 推荐(0)
摘要: 正常写法 <span style="font-size: 12px"></span> 绑定写法 <span :style="'font-size: 12px'"></span> 调用函数写法 <span :style="'font-size:'+getNrFontSize(item.deptName 阅读全文
posted @ 2022-03-11 11:48 寒冷的雨呢 阅读(111) 评论(0) 推荐(0)
摘要: 方法一:使用正则表达式,代码如下 getByteLen(val) { var len = 0; for (var i = 0; i < val.length; i++) { var a = val.charAt(i); if (a.match(/[^\x00-\xff]/ig) != null) { 阅读全文
posted @ 2022-03-11 10:48 寒冷的雨呢 阅读(1144) 评论(0) 推荐(0)
摘要: 1、外部文件config.js 第一种写法 //常量的定义 const config = { baseurl:'http://172.16.114.5:8088/MGT2' } //函数的定义 function formatXml(text) { return text } function get 阅读全文
posted @ 2022-03-09 12:39 寒冷的雨呢 阅读(1545) 评论(0) 推荐(0)
摘要: 1.通过cnpm install echarts --save安装后,在main.js中引用出现以下问题 2.原因是默认安装了echarts5.0.0的版本 3.通过cnpm install echarts@4.9.0 --save 指令指定4.9.0的版本安装解决 阅读全文
posted @ 2022-03-09 10:18 寒冷的雨呢 阅读(166) 评论(0) 推荐(0)
摘要: 1、首先安装moment npm install moment --save 2、在main.js里引入 import moment from 'moment'//导入文件 Vue.prototype.$moment = moment;//赋值使用 moment.locale('zh-cn');// 阅读全文
posted @ 2022-03-09 09:20 寒冷的雨呢 阅读(502) 评论(0) 推荐(0)
摘要: 该问题为配置文件路径错误,检查配置文件,千万不要给路径+"" mysql5正确形式为 jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC 阅读全文
posted @ 2022-03-07 17:56 寒冷的雨呢 阅读(1458) 评论(0) 推荐(0)
摘要: 1.启动报Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registere 阅读全文
posted @ 2022-03-07 17:55 寒冷的雨呢 阅读(1516) 评论(0) 推荐(0)
摘要: 改一下mysql驱动的版本号 <version>5.1.46</version> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <v 阅读全文
posted @ 2022-03-07 17:47 寒冷的雨呢 阅读(474) 评论(0) 推荐(0)