软件工具
禺垣
万世之一时,全局之一域。
展开
-
maven项目中将直接使用jar包的方式改为pom.xml下配置的方式
在maven项目中,原来直接在WEB-INF下导入了jxl.jar包,现改为在pom.xml文件下的依赖项进行标签配置: <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl --> <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artif原创 2021-09-14 11:18:22 · 976 阅读 · 0 评论 -
svn:E230001:Server SSL certificate verification failed:certificate issued for a different hostname,i
svn:E230001:Server SSL certificate verification failed:certificate issued for a different hostname,issuer is not trusted IDEA连接SVN时出现了该证书问题,使用命令忽略证书即可,解决方法: 在cmd下执行命令 svn ls https://…,执行后输入p继续。 参考 1.https://blog.csdn.net/qq_34067821/article/details/8047661原创 2021-07-06 14:23:52 · 600 阅读 · 0 评论 -
使用Apache服务器部署python web过程中遇到的问题及解决方法
1. 浏览器提示Internal Server Error 分析:查看Apache错误日志。日志提示:IndentationError: expected an indented block\r,即程序缺少了缩进。 解决:检查程序,按照python语法,将函数体一律缩进。 重启服务器,问题解决。 2.启动Apache时,控制台提示 AH00526: Syntax error on。。。: Invalid command 'Order', perhaps misspelled or de..原创 2021-04-04 18:37:28 · 1319 阅读 · 3 评论 -
ApacheVC14的下载和安装
Apache是一款通用的Web服务器软件。 1 下载 下载地址: https://www.apachehaus.com/cgi-bin/download.plx 或 https://www.apachelounge.com/download/ 根据需要,下载对应VC++版本的Apache,这里下载的是VC15版本,下载得到文件httpd-2.4.46-o111j-x86-vc15.zip。 2 安装 免安装,直接解压。将Apache24置于一个指定的目录下即可,这里放在了D盘根目录。 3原创 2021-04-02 18:32:24 · 754 阅读 · 0 评论