摘要:
1.1 junit5 版本5.6.0 pom文件如下: <properties> <junit.jupiter.version>5.6.0</junit.jupiter.version> </properties> <dependency> <groupId>org.junit.jupiter</g 阅读全文
摘要:
1. 在.pom文件中添加openfeign的依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId></dependenc 阅读全文
摘要:
1.在application.properties中ds-portal_service_port=http://192.168.**.**:10001 2.在java中@Autowiredprivate Environment environment; String portalPort = env 阅读全文
摘要:
1.win + r 输入cmd进入命令窗口 输入diskpart 2.输入 list disk 查看硬盘列表 3.输入 select disk 0 进入该磁盘 再输入detail disk 查看硬盘序列号(硬盘id即为硬盘序列号) 阅读全文
摘要:
通过命令查找某一特定端口,在命令窗口中输入命令中输入 netstat -ano |findstr "端口号",然后回车就可以看到这个端口被哪个应用占用。 查看到对应的进程id之后,就可以通过id查找对应的进程名称,使用命令 tasklist |findstr "进程id号" 通过命令杀掉进程,或者是 阅读全文
摘要:
// 下载模板function DownloadExcel() { console.log("进入方法"); const xhr = new XMLHttpRequest(); xhr.open("GET",url地址); xhr.send(); xhr.responseType = 'blob'; 阅读全文
摘要:
*************************** APPLICATION FAILED TO START *************************** Description: Binding to target [Bindable@31133b6e type = org.sprin 阅读全文
摘要:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project rcs-maapapi: Compilation failur 阅读全文