- 博客(5)
- 收藏
- 关注
转载 python2.7出现[UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-11]的解决
python的lib\site-packages下建一个sitecustomize.py文件,内容如下:# encoding=utf8import sysreload(sys)sys.setdefaultencoding('utf8')这样的话,系统在python启动的时候,自行调用该文件,设置系统的默认编码
2017-05-22 18:47:06 471
原创 Error creating bean with name 'beanName' 提示异常信息:java.lang.reflect.MalformedParameterizedTypeExcept
在ParameterizedTypeImpl类下面的validateConstructorArguments方法打断点,查看this值是什么, 如果var1的length为0就可以通过this的值(值一般是包和类名如:org.apache.ibatis.type.TypeHandler) 查看是否此类没有,或者jar包没有,自行查看,没有就导入即可.ps:反正自己是通过这个方法解决过很多次这种异
2017-03-21 18:26:47 480
转载 windows使用git时出现:warning: LF will be replaced by CRLF
windows中的换行符为 CRLF, 而在Linux下的换行符为LF,所以在执行add . 时出现提示,解决办法:$ rm -rf .git // 删除.git $ git config --global core.autocrlf false //禁用自动转换 然后重新执行:$ git init $ git add . 转载自http://blog.csdn.net/un
2017-03-07 20:14:28 246
原创 IntelliJ IDEA创建Maven web项目速度慢的解决方法
在Properties中添加Name:archetypeCatalog和Value:internal,如下图那样
2017-03-02 20:04:23 2285
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人