溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2021-08-25 15:35:10 來(lái)源:億速云 閱讀:210 作者:小新 欄目:編程語(yǔ)言

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

模塊化的功能有幾個(gè)目的:

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

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

  • 改進(jìn)性能和安全性

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

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

  其實(shí)模塊化本身不難理解,我們先前使用maven或者gradle就構(gòu)建過多模塊的項(xiàng)目。那么我們?cè)趈ava9里依然可以照貓畫虎來(lái)構(gòu)建一下我們的模塊化項(xiàng)目工程。如圖所示:

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

注意以下幾點(diǎn):

  1.請(qǐng)?jiān)诿總€(gè)模塊下創(chuàng)建一個(gè)叫做module-info.java的模塊化描述文件

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

  找到這個(gè)選項(xiàng)圖標(biāo):,然后這樣設(shè)置來(lái)添加依賴:  

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

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

二、實(shí)現(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)一建立在各個(gè)模塊的源文件根目錄 名字為:module-info.java
 * 模塊化常見的語(yǔ)法結(jié)構(gòu):
 *
 * import xxxx.xxxx;
 * ....
 *
 * [open] module 模塊名 {
 * requires [static|transitive] 模塊名;
 * exports 包名 [to 模塊名]
 * providers 接口名 with [接口實(shí)現(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、定義實(shí)現(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ùn)行后既可以拿到對(duì)應(yīng)的結(jié)果:

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

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

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

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

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

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

  語(yǔ)法 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)前模塊與另一個(gè)模塊的依賴關(guān)系。有點(diǎn)類似于maven中的dependecies。

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

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

java9如何實(shí)現(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;
}

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

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

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

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

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI