摘要:
在启动nginx的时候出现了这个错误,原因是9001端口被占用,解决办法是:在cmd中输入命令行: netstart -ano | findstr 9001 得到PID 为4 的进程号,说明9001被进程号为4的进程占用,进入任务管理器,找到PID为4的进程名称,右键打开文件所在位置,发现是ntos 阅读全文
摘要:
ERROR Failed to compile with 1 errors friendly-errors 09:48:15 ERROR in ./.nuxt/client.js friendly-errors 09:48:15 Module build failed (from ./node_mo 阅读全文
摘要:
failed to req API:/nacos/v1/ns/service/list after all servers([127.0.0.1:8848]) tried: failed to re...错误的原因是nacos没有启动解决方法:找到nacos所在的文件: 阅读全文
摘要:
jsp页面数据回显(select下拉选择框): <select id="userFlag" name="userFlag" value="${schoolBaseInfo.userFlag}"/> <option value="">--请选择--</option> <option value="0" 阅读全文
摘要:
Correct the classpath of your application so that it contains a single...... 原因是gson的jar包版本问题,解决办法是加入依赖 <dependency> <groupId>com.google.code.gson</gr 阅读全文
该文被密码保护。 阅读全文
摘要:
用jquery获取tbody下的第一个tr的最后一个td里面的值:re_process_old = $(".re_process_list tr:first td:last").text(); function(index, layero){ var re_content = layero.find 阅读全文
摘要:
Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to dete 阅读全文
摘要:
Error running exam-web: Address localhost:1099 is already in use: 解决办法:在cmd中输入如下命令: netstat -aon | findstr 1099:找到被占用的pid taskkill -f -pid pid:终止 如图所示 阅读全文