中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IDEA+Maven怎么實現簡單的demo

發布時間:2021-12-14 09:52:19 來源:億速云 閱讀:208 作者:iii 欄目:云計算

本篇內容介紹了“IDEA+Maven怎么實現簡單的demo”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1、在IDEA下新建Maven工程,并選擇webapp骨架

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

2、設置工程屬性

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

3、按照Maven的約定,設置文件夾

IDEA+Maven怎么實現簡單的demo

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>


</project>

5、DemoService

package com.scut.api;

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

6、將test-api進行編譯(compile)、打包(package)、部署(deploy)

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

IDEA+Maven怎么實現簡單的demo

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

IDEA+Maven怎么實現簡單的demo

“IDEA+Maven怎么實現簡單的demo”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和田市| 信阳市| 永年县| 湘潭县| 上饶市| 益阳市| 开原市| 前郭尔| 陆河县| 苏尼特左旗| 紫阳县| 永川市| 玉田县| 长汀县| 瓮安县| 恭城| 阳高县| 临沭县| 金沙县| 廊坊市| 淮滨县| 辽阳市| 勃利县| 西城区| 阿克陶县| 疏附县| 威信县| 普宁市| 凤台县| 灵丘县| 通许县| 大城县| 罗江县| 廊坊市| 临邑县| 康乐县| 原阳县| 德格县| 睢宁县| 新兴县| 贵州省|