84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
现在在自己的笔记本有这样一个java-web项目,请问如果我要发送给别人或者在家里的另外一台电脑上面直接通过tomcat/maven来运行这个java-web项目,那么我应该怎样打包拿来发送,或者说我应该发送这个文件的那一部分?
欢迎选择我的课程,让我们一起见证您的进步~~
You can check which files have been selected to be ignored in the .gitignorefiles in the JavaWeb project on GitHub.
.gitignore
Judging from the picture, .idea和targetthe directory can be omitted.
.idea
target
Looking at the project as a maven project, you only need to package the pom and src files. *.iml and .idea/ are the environment information of the idea
Just upload it to GitHub
You can check which files have been selected to be ignored in the
.gitignore
files in the JavaWeb project on GitHub.Judging from the picture,
.idea
和target
the directory can be omitted.Looking at the project as a maven project, you only need to package the pom and src files. *.iml and .idea/ are the environment information of the idea
Just upload it to GitHub