摘要:
1: 学习Python时:按文档练习print报错 >>> print "hello" File "<stdin>", line 1 print "hello" ^SyntaxError: Missing parentheses in call to 'print'>>> name = "zhang 阅读全文
摘要:
1、配置环境: 按照http://www.cnblogs.com/mealrice/p/5495544.html介绍的方法配置环境后,运行报错: Traceback (most recent call last): File "D:\Programs\Python\Python35\lib\site 阅读全文
摘要:
1、从本地上上传开发代码到git上,用Jenkins构建时报错(注:之前的测试版本,jenkins是可以正常构建的) Started by user adminBuilding in workspace /data2/jenkins/jobs/RMB-API-JAVA/workspace > git 阅读全文
摘要:
从git重新拉了一个项目的分支后,控制台一直打印不了log4j的日志,也没有报错。 System.print可以成功打印消息。 原因:slf4j-log4j12包没有依赖 解决方法:在pom.xml中加入依赖包后,log4j的日志就可以打印了。之前的分支可以打印,可能是因为依赖的其他包有依赖slf4 阅读全文