diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c446418 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Created by .ignore support plugin (hsz.mobi) +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + + +target/ +!.mvn/wrapper/maven-wrapper.jar + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +nbproject/private/ +builds/ +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + +log/ +logs/ \ No newline at end of file diff --git a/src/main/java/cn/mesalab/utils/HttpClientUtils.java b/src/main/java/cn/mesalab/utils/HttpClientUtils.java new file mode 100644 index 0000000..2f7f35a --- /dev/null +++ b/src/main/java/cn/mesalab/utils/HttpClientUtils.java @@ -0,0 +1,6 @@ +package cn.mesalab.utils;/** + * @author yjy + * @date 2021/8/3 3:57 下午 + * @version 1.0 + */public class HttpClientService { +}