diff options
| author | yinjiangyi <[email protected]> | 2021-08-03 16:36:29 +0800 |
|---|---|---|
| committer | yinjiangyi <[email protected]> | 2021-08-03 16:36:29 +0800 |
| commit | a39609557c4e0e11a145634f7a6ac345b4145684 (patch) | |
| tree | 947c0f9c319da77d4aab67087cb9eaf52562aef0 | |
| parent | 641c0d0ef4f0d5fe74df70974b5af7b6550cba51 (diff) | |
增加gitignore
| -rw-r--r-- | .gitignore | 43 | ||||
| -rw-r--r-- | src/main/java/cn/mesalab/utils/HttpClientUtils.java | 6 |
2 files changed, 49 insertions, 0 deletions
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 { +} |
