第一次使用mvn archetype:generate
出现Generating project in Interactive mode并保持暂停,需要再次在cmd中继续输入mvn archetype:generate -DgroupId=com.cyf -DartifactId=cms -DarchetypeArtifactId=maven-archetype-webapp -DarchetypeCatalog=internal。之后出现的暂停会有一些数字让选区,默认,直接敲enter,接着会出现版本选择的命令窗
出现Generating project in Interactive mode并保持暂停,需要再次在cmd中继续输入mvn archetype:generate -DgroupId=com.cyf -DartifactId=cms -DarchetypeArtifactId=maven-archetype-webapp -DarchetypeCatalog=internal。之后出现的暂停会有一些数字让选区,默认,直接敲enter,接着会出现版本选择的命令窗
2019-04-04
已采纳回答 / qq_Bluememory_0
package是打包,包放在target文件中,并没有被安装到本地仓库,install是将包传到本地仓库,并且install包括package这个过程。
2019-03-22
最赞回答 / csDanger
你这是import类, 涉及的是成员访问控制, 我猜你在com.imooc.maven01.model包中声明的HelloWorld类应该是用public修饰的, 这样它在com.imooc.maven02.util包中是可以访问的, 所以引入自然没有问题。可以去看看Java的protected、private、public访问控制符修饰实体各自的可见性。
2019-03-05
就是 helloworld.java return 语句的输出有个空格,然后HelloWorldTest.java 中 没有空格,就竟然报错了
2019-02-28