<!-- demodemo.xml --><dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>2.7.0</version> ...
分类:
其他好文 时间:
2021-01-26 12:23:58
阅读次数:
0
准备工作 JDK 8+ Maven 引入依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.1.6.RELEASE</version> </d ...
分类:
编程语言 时间:
2021-01-26 12:06:11
阅读次数:
0
maven 下载了一个新扩展 导致如下错误: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/C:/Users/QianXiao/.m2/repository/ch/qos/ ...
分类:
其他好文 时间:
2021-01-26 11:57:22
阅读次数:
0
1.IDEA如何用到Junit功能 (1)如果你用maven管理项目的话直接在pom里面添加依赖 <!--junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</vers ...
分类:
其他好文 时间:
2021-01-26 11:46:01
阅读次数:
0
JAVA开发环境搭建 卸载JDK 打开我的电脑属性 高级电脑设置,环境变量 系统变量中有个变量名为JAVA_HOME,点击根目录,删除根目录文件,再删除对应的变量和PATH win + r 查看JAVA-VERSION 检查是否删除完全 安装JDK 搜索JDK1.8,推荐安装1.8 安装地址 下载, ...
分类:
编程语言 时间:
2021-01-25 11:10:19
阅读次数:
0
一、linux CPU大小 cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo ...
分类:
系统相关 时间:
2021-01-25 10:49:16
阅读次数:
0
Spring Boot 整合 PageHelper 依赖导入 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version> ...
分类:
编程语言 时间:
2021-01-25 10:44:33
阅读次数:
0
<?xml version="1.0"?> <configuration> <configSections> <sectionGroup name="system.data.dataset.serialization" type="System.Data.SerializationSettingsS ...
分类:
其他好文 时间:
2021-01-25 10:44:15
阅读次数:
0
Spring Boot 整合Swagger2 依赖导入 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </depend ...
分类:
编程语言 时间:
2021-01-25 10:42:42
阅读次数:
0
docker exec -it php php /www/my_project/think version >> my.log docker exec -it php 执行容器 php /www/my_project/think version 执行php指令 并将执行结果写入日志 ...
分类:
Web程序 时间:
2021-01-25 10:34:25
阅读次数:
0