启动的时候报错,junit报错一样的 Result Maps collection already contains value for mybatis 查了一下应该是 ***mapper.java和 ***mapper.xml解析有问题了, 不能注入了。 按照***mapper.java 里的方法 ...
分类:
其他好文 时间:
2019-07-24 11:50:10
阅读次数:
88
今天在输入node .\app.js启动api接口时出现了以下报错: 出现这个报错说明端口被占用:Error: listen EADDRINUSE: address already in use :::8888 解决方法:找到占用该端口的程序,用kill杀掉它。例如这个是8888: 输入命令: ne ...
分类:
其他好文 时间:
2019-07-19 21:15:52
阅读次数:
144
题目链接:https://codeforces.com/contest/1181 A: 水题。 1 /* basic header */ 2 #include <bits/stdc++.h> 3 /* define */ 4 #define ll long long 5 #define dou do ...
分类:
其他好文 时间:
2019-07-17 00:12:16
阅读次数:
114
pythonregistry函数语法 在windows下安装numpy的时候,出现了"Pythonversion3.4required,whichwasnotfoundintheregistry"的错误. 类似的有:Pythonversion2.7required,whichwasnotfoundi ...
分类:
编程语言 时间:
2019-07-15 17:21:02
阅读次数:
154
说明80端口被用 终端: ps -ef|grep httpd察看占用的进程或者用netstat -lnp|grep 80 找到后kill掉,如果都不行那么再试试以下方法 终端输入: find / -name ports.conf /etc/apache2/ports.conf 输入: vim '/e ...
分类:
Web程序 时间:
2019-07-09 22:20:52
阅读次数:
180
https://www.youtube.com/watch?v=8cJSRC1VAJo&list=PL27A5D7DE7D02373A&index=19 Tonight David and I are going out to dinner with two friends, a double da ...
分类:
其他好文 时间:
2019-07-08 00:03:07
阅读次数:
171
1 完整异常信息 问题 Airflow调度服务无法启动 解决办法 <!--?xml version="1.0" encoding="UTF-8"?--> 删除pid文件,重启就ok了。 ...
分类:
其他好文 时间:
2019-07-05 00:26:03
阅读次数:
153
How to Create a Basic Plugin Sometimes you want to make a piece of functionality available throughout your code. For example, perhaps you want a singl ...
分类:
Web程序 时间:
2019-07-01 10:31:01
阅读次数:
160
1.1、 import java.util.ArrayList;import java.util.List; import java.util.ArrayList;import java.util.List; 1.2、 List<Integer> newList = new ArrayList<In ...
分类:
编程语言 时间:
2019-06-27 10:44:58
阅读次数:
99