IDEA+Maven怎么实现简单的demo

64次阅读
没有评论

共计 1478 个字符,预计需要花费 4 分钟才能阅读完成。

本篇内容介绍了“IDEA+Maven 怎么实现简单的 demo”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

1、在 IDEA 下新建 Maven 工程,并选择 webapp 骨架

2、设置工程属性

3、按照 Maven 的约定,设置文件夹

4、配置 pom.xml

?xml version= 1.0  encoding= UTF-8 ? 
 project xmlns= http://maven.apache.org/POM/4.0.0 
 xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance 
 xsi:schemaLocation= http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd 
  modelVersion 4.0.0 /modelVersion 
  groupId com.zx /groupId 
  artifactId test-api /artifactId 
  version 1.0-SNAPSHOT /version 
  !--  设定除中央仓库 (repo1.maven.org/maven2/) 外的其他仓库, 按设定顺序进行查找. -- 
  repositories 
  !--  如有 Nexus 私服,  取消注释并指向正确的服务器地址. -- 
  repository 
  id nexus /id 
  name maven2 /name 
  url 私服 url /url 
  releases 
  enabled true /enabled 
  /releases 
  snapshots 
  enabled false /enabled 
  updatePolicy daily /updatePolicy 
  /snapshots 
  /repository 
  /repositories 
  pluginRepositories 
  pluginRepository 
  id nexus /id 
  name maven2 /name 
  url 私服 url /url 
  releases 
  enabled true /enabled 
  /releases 
  snapshots 
  enabled false /enabled 
  /snapshots 
  /pluginRepository 
  /pluginRepositories 
  !--  把本地项目 deploy 项目到私服  -- 
  distributionManagement 
  repository 
  id releases /id 
  name Nexus Release Repository /name 
  url 私服 url /url 
  /repository 
  snapshotRepository 
  id snapshots /id 
  name Nexus Snapshot Repository /name 
  url 私服 url /url 
  /snapshotRepository 
  /distributionManagement 

public interface DemoService { String sayHello(String name); }

6、将 test-api 进行编译(compile)、打包(package)、部署(deploy)

7、然后私库上能看到部署上去的 test-api

IDEA+Maven 怎么实现简单的 demo

“IDEA+Maven 怎么实现简单的 demo”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-16发表,共计1478字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)