成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

java9如何實現(xiàn)模塊化

這篇文章主要介紹java9如何實現(xiàn)模塊化,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供渝中企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、H5響應(yīng)式網(wǎng)站、小程序制作等業(yè)務(wù)。10年已為渝中眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進行中。

模塊化的功能有幾個目的:

  • 讓Java的SE程序更加容易輕量級部署

  • 改進組件間的依賴管理,引入比Jar粒度更大的Module

  • 改進性能和安全性

  • 如果用更加簡單解釋,那就是"解決Classpath地獄問題,改進部署能力"。Module的內(nèi)容比較多,為了由淺入深,我按照一些問題和我的理解來介紹模塊化。

一、模塊化項目構(gòu)建

其實模塊化本身不難理解,我們先前使用maven或者gradle就構(gòu)建過多模塊的項目。那么我們在java9里依然可以照貓畫虎來構(gòu)建一下我們的模塊化項目工程。如圖所示:

java9如何實現(xiàn)模塊化

注意以下幾點:

1.請在每個模塊下創(chuàng)建一個叫做module-info.java的模塊化描述文件

2.在idea里配置一下模塊依賴,在這里我們的project.portal模塊如果依賴student.service模塊,我們可以這么來設(shè)置:

找到這個選項圖標(biāo):,然后這樣設(shè)置來添加依賴:

   如果需要設(shè)置其他項目的依賴項,也請按照此方式設(shè)置。

java9如何實現(xiàn)模塊化

二、實現(xiàn)步驟

2.1、Student.Service模塊

2.1.1、編寫StudentService的module-info.java

示例代碼:

import com.bdqn.lyrk.student.service.SecondStudentService;
import com.bdqn.lyrk.student.service.api.IStudentService;
/**
 * 模塊化描述類,統(tǒng)一建立在各個模塊的源文件根目錄 名字為:module-info.java
 * 模塊化常見的語法結(jié)構(gòu):
 *
 * import xxxx.xxxx;
 * ....
 *
 * [open] module 模塊名 {
 * requires [static|transitive] 模塊名;
 * exports 包名 [to 模塊名]
 * providers 接口名 with [接口實現(xiàn)類,....]
 * uses 接口名
 * 
 * }
 *
 *
* @author chen.nie
* @date 2018/4/18
**/
module student.service {

 exports com.bdqn.lyrk.student.service.api;
 provides IStudentService with SecondStudentService;
}

2.1.2、定義接口

package com.bdqn.lyrk.student.service.api;
public interface IStudentService {
 void study();
}

2.1.3、定義實現(xiàn)類

package com.bdqn.lyrk.student.service;
import com.bdqn.lyrk.student.service.api.IStudentService;

public class SecondStudentService implements IStudentService {
 @Override
 public void study() {
 System.out.println("second study");
 }
}

2.2、project.portal 模塊

2.2.1、編寫module-info.java

import com.bdqn.lyrk.student.service.api.IStudentService;
module project.portal {
 uses IStudentService;
 requires transitive student.service;
}

2.2.2、編寫Main方法

package com.bdqn.lyrk.portal;
import com.bdqn.lyrk.student.service.api.IStudentService;
import java.util.ServiceLoader;
public class Main {
 public static void main(String[] args) {
 ServiceLoader<IStudentService> studentServices = ServiceLoader.load(IStudentService.class);
 studentServices.findFirst().get().study();
 }
}

我們運行后既可以拿到對應(yīng)的結(jié)果:

java9如何實現(xiàn)模塊化

三、module-info.java文件常見配置

3.1、關(guān)于open關(guān)鍵字

open:該關(guān)鍵字如果加載模塊上,那么通過exports的導(dǎo)出包下的類可見度是最高的,我們可以通過反射的方式來創(chuàng)建對對象和訪問屬性。

3.2、關(guān)于exports關(guān)鍵字

當(dāng)我們定義好模塊后,我們可以指定該模塊下的哪些包可以被其他模塊所訪問,exports關(guān)鍵字就起到該作用。我們也可以配合to來指定哪些模塊可以訪問該包的內(nèi)容

語法 exports 包名 [to] 模塊名

exports <package>;
exports <package> to <module1>, <module2>...;

3.3、opens關(guān)鍵字

opens類似于open,如果open關(guān)鍵字加在module上,那么模塊里默認(rèn)導(dǎo)出的exports包都為open形式的

module N {
 exports com.jdojo.claim.model;
 opens com.jdojo.claim.model;
}

3.4、requires關(guān)鍵字

       該關(guān)鍵字聲明當(dāng)前模塊與另一個模塊的依賴關(guān)系。有點類似于maven中的dependecies。

requires <module>;
requires transitive <module>;
requires static <module>;
requires transitive static <module>;

require語句中也可以加靜態(tài)修飾符,這樣的話表示在編譯時的依賴是強制的,但在運行時是可選的。require語句中的transitive修飾符會導(dǎo)致依賴于當(dāng)前模塊的其他模塊具有隱式依賴性,請看下圖:

java9如何實現(xiàn)模塊化 

       在這里我們可以看看java.se模塊下的module-info.class文件:

/*
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

/**
 * Defines the core Java SE API.
 * <P>
 * The modules defining the CORBA and Java EE APIs are not required by
 * this module, but they are required by the
 * <a href="java.se.ee-summary.html">{@code java.se.ee}</a> module.
 *
 * <dl>
 * <dt class="simpleTagLabel" >Optional for the Java SE Platform:</dt>
 * <dd>
 * <a href="../specs/jni/index.html">Java Native Interface (JNI)</a><br>
 * <a href="../specs/jvmti.html">Java Virtual Machine Tool Interface (JVM TI)</a><br>
 * <a href="../specs/jdwp/jdwp-spec.html">Java Debug Wire Protocol (JDWP)</a><br>
 * </dd>
 * </dl>
 *
 * @moduleGraph
 * @since 9
 */
module java.se {
 requires transitive java.compiler;
 requires transitive java.datatransfer;
 requires transitive java.desktop;
 requires transitive java.instrument;
 requires transitive java.logging;
 requires transitive java.management;
 requires transitive java.management.rmi;
 requires transitive java.naming;
 requires transitive java.prefs;
 requires transitive java.rmi;
 requires transitive java.scripting;
 requires transitive java.security.jgss;
 requires transitive java.security.sasl;
 requires transitive java.sql;
 requires transitive java.sql.rowset;
 requires transitive java.xml;
 requires transitive java.xml.crypto;
}

此時我們只要requires java.se,那么該模塊下的所有依賴我們就間接的引入了

3.5、uses與provider關(guān)鍵字

       Java允許使用服務(wù)提供者和服務(wù)使用者分離的服務(wù)提供者機制。 JDK 9允許使用語句(uses statement)和提供語句(provides statement)實現(xiàn)其服務(wù)。使用語句可以指定服務(wù)接口的名字,當(dāng)前模塊就會發(fā)現(xiàn)它,使用 java.util.ServiceLoader類進行加載。代碼請參考前面的例子,注意:provider提供的類必須在同一個模塊下,當(dāng)前不能引用其他模塊的實現(xiàn),比如說:前面的例子StudentServiceImpl只能存在student.service模塊下,student.service模塊provider其他的模塊下的接口實現(xiàn)是不允許的。

以上是“java9如何實現(xiàn)模塊化”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

分享文章:java9如何實現(xiàn)模塊化
網(wǎng)站鏈接:http://jinyejixie.com/article34/ggsjpe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)站改版、網(wǎng)站排名、定制網(wǎng)站、定制開發(fā)、云服務(wù)器

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)
长子县| 雷波县| 塔城市| 临泉县| 贵州省| 股票| 北票市| 固镇县| 阳西县| 西充县| 白河县| 昆明市| 临湘市| 烟台市| 石景山区| 松桃| 安陆市| 尉氏县| 景泰县| 当雄县| 宁陵县| 板桥市| 高州市| 彰武县| 贺兰县| 九台市| 潢川县| 蒙自县| 林甸县| 寿宁县| 浏阳市| 西和县| 石河子市| 金平| 永德县| 毕节市| 保山市| 双柏县| 荔浦县| 宾阳县| 长垣县|