精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

什么是springBoot業(yè)務(wù)組件化開發(fā)?談?wù)凷pringBoot業(yè)務(wù)組件化

jf_ro2CN3Fa ? 來源:csdn ? 2023-07-20 11:30 ? 次閱讀

1、背景

首先,談一談什么是“springBoot業(yè)務(wù)組件化開發(fā)”,最近一直在開發(fā)一直面臨這一個問題,就是相同的業(yè)務(wù)場景場景在一個項目中使用了,又需要再另外一個項目中復(fù)用,一遍又一遍的復(fù)制代碼,然后想將該業(yè)務(wù)的代碼在不同的項目中維護起來真的很難。

最開始想用微服務(wù)的方式來解決這個問題,但是覺得一套完整的微服務(wù)太重,而且目前微服務(wù)還處于振蕩期(去年的微服務(wù)解決方案,今年國內(nèi)直接都換成了阿里的技術(shù)解決方案),此外很多時候我們接私活,就是個單體的springboot項目,用不上微服務(wù)這種級別的項目,所以想來想去這條路不是很滿足我的需求;再后來,想到單體的聚合架構(gòu),但是聚合架構(gòu)的項目,個人覺得有時候也不是很好,一般的聚合項目就是基于某個具體實例架構(gòu)下才能使用,換一個架構(gòu)自己寫的業(yè)務(wù)model就不能用了(比如你在suoyi框架下開發(fā)的模塊業(yè)務(wù)包,在guns下可能就直接不能使用了)。

最后,想了一下,能不能單獨開發(fā)一個項目,這個項目可以自己獨立運行(微服務(wù)架構(gòu)下用),也可以在單體項目中直接通過pom引入的方式,然后簡單的配置一下,然后直接使用多好;查了一下網(wǎng)上沒有現(xiàn)成的技術(shù)解決方案,問了同事,他說我這種思想屬于SOA的一種實現(xiàn),同時有第三包和聚合項目的影子在里面。也許有什么更好的技術(shù)解決方案,也希望各位能夠不吝賜教。

補充一句,之所以說“業(yè)務(wù)組件化”開發(fā),來源于Vue的思想,希望Java后端開發(fā)的業(yè)務(wù)也可像vue的組件一樣去使用,這樣多好

2、demo

2-1項目準(zhǔn)備

①建一個Java項目項目,結(jié)構(gòu)如下圖:

79523374-269e-11ee-962d-dac502259ad0.png

②pom文件如下:



4.0.0


org.springframework.boot
spring-boot-starter-parent
2.3.1.RELEASE


top.wp
cx-flow
1.0-SNAPSHOT



UTF-8
UTF-8
8.0.17
1.1.21
3.3.2
1.2.70
0.9.1
5.3.7
1.18.12
2.9.2
1.9.6
4.2.0
4.2.0
6.4.3
1.15.6
3.8.0
5.6.23
4.4.6
4.17.6
3.1.57




 

org.springframework.boot
spring-boot-starter-web


 

com.baomidou
mybatis-plus-boot-starter
${mp.version}


 

mysql
mysql-connector-java
${mysql-connector-java.version}


 

com.alibaba
druid
${druid.version}


 

cn.hutool
hutool-all
${hutool.version}


 

org.projectlombok
lombok
${lombok.versin}








src/main/resources
 

**/*.properties
**/*.xml
**/*.yml

false


src/main/java

**/*.xml

false






③配置文件如下:主要是數(shù)據(jù)庫和mybaits-plus的配置(其實可以不用這個配置文件,在這只是為了項目能夠獨立運行起來)

#服務(wù)配置
server:
port:8080
#spring相關(guān)配置
spring:
datasource:
driver-class-name:com.mysql.cj.jdbc.Driver
url:jdbc//localhost:3306/cx-xn?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT&nullCatalogMeansCurrent=true
username:數(shù)據(jù)庫賬戶
password:數(shù)據(jù)庫密碼
servlet:
multipart:
max-request-size:100MB
max-file-size:100MB
jackson:
time-zone:GMT+8
date-format:yyyy-MM-ddHHss.SSS
locale:zh_CN
serialization:
#格式化輸出
indent_output:false

#mybaits相關(guān)配置
mybatis-plus:
mapper-locations:classpath*:top/wp/cx/**/mapping/*.xml,classpath:/META-INF/modeler-mybatis-mappings/*.xml
configuration:
map-underscore-to-camel-case:true
cache-enabled:true
lazy-loading-enabled:true
multiple-result-sets-enabled:true
log-impl:org.apache.ibatis.logging.stdout.StdOutImpl

global-config:
banner:false
db-config:
id-type:assign_id
table-underline:true
enable-sql-runner:true
configuration-properties:
prefix:
blobType:BLOB
boolValue:TRUE

④啟動入口(可以不用寫,啟動入口存在目的是讓項目可以自己跑起來)

packagetop.wp.cx;

importcn.hutool.log.StaticLog;
importorg.springframework.boot.SpringApplication;
importorg.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
publicclassCXApplication{
publicstaticvoidmain(String[]args){
SpringApplication.run(CXApplication.class,args);
StaticLog.info(">>>"+CXApplication.class.getSimpleName()+"啟動成功!");

}
}

⑤測試:entity、result

packagetop.wp.cx.modular.test.entity;

importcom.baomidou.mybatisplus.annotation.IdType;
importcom.baomidou.mybatisplus.annotation.TableId;
importcom.baomidou.mybatisplus.annotation.TableName;
importlombok.Data;


@Data
@TableName("test")
publicclassTest{

/**
*主鍵
*/
@TableId(type=IdType.ASSIGN_ID)
privateIntegerid;

/**
*賬號
*/
privateStringname;

}
packagetop.wp.cx.modular.test.result;

importlombok.Data;
@Data
publicclassTestResult{

privateIntegerid;

privateStringname;

}

⑥測試mapper、xml、service和controller

packagetop.wp.cx.modular.test.mapper;

importcom.baomidou.mybatisplus.core.mapper.BaseMapper;
importtop.wp.cx.modular.test.entity.Test;

/**
*系統(tǒng)用戶數(shù)據(jù)范圍mapper接口
*
*@authorxuyuxiang
*@date2020/3/1315:46
*/
//@Mapper
publicinterfaceTestMapperextendsBaseMapper{
}





packagetop.wp.cx.modular.test.service;

importcom.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
importorg.springframework.stereotype.Service;
importtop.wp.cx.modular.test.entity.Test;
importtop.wp.cx.modular.test.mapper.TestMapper;

/**
*一個service實現(xiàn)
*
*@authoryubaoshan
*@date2020/4/918:11
*/
@Service
publicclassTestServiceextendsServiceImpl{

}
packagetop.wp.cx.modular.test.controller;

importorg.springframework.web.bind.annotation.GetMapping;
importorg.springframework.web.bind.annotation.RequestMapping;
importorg.springframework.web.bind.annotation.RestController;
importtop.wp.cx.modular.test.entity.Test;
importtop.wp.cx.modular.test.service.TestService;

importjavax.annotation.Resource;
importjava.util.List;

/**
*一個示例接口
*
*@authoryubaoshan
*@date2020/4/918:09
*/
@RestController
@RequestMapping("/test")
publicclassTestController{

@Resource
privateTestServicetestService;

@GetMapping("")
publicListtestResult(){
returntestService.list();
}

@GetMapping("/2")
publicStringtestResult2(){
return"22";
}
}

至此項目準(zhǔn)備完成,其實就是簡單見了一個測試項目,此時如果你按照上面的步驟,寫了啟動類和配置項信息,項目是可以獨立運行的。

2-2項目打包、引入、運行

①將2-1中的測試項目進行打包:install右鍵第一個選項

7998771c-269e-11ee-962d-dac502259ad0.png

②此時你的本地maven倉庫會出現(xiàn)剛才的項目(當(dāng)然前提是你的idea配置過本地的maven)

7a082f62-269e-11ee-962d-dac502259ad0.png7a2e12ae-269e-11ee-962d-dac502259ad0.png

③新建另外一個項目cx-main

7b31d15e-269e-11ee-962d-dac502259ad0.png

④pom文件如下:注意將你剛才的準(zhǔn)備測試的項目引入進來

7b5e56a2-269e-11ee-962d-dac502259ad0.png



4.0.0


org.springframework.boot
spring-boot-starter-parent
2.3.1.RELEASE


top.wp.cx
cx-main
1.0-SNAPSHOT


UTF-8
UTF-8
8.0.17
1.1.21
3.3.2
1.2.70
0.9.1
5.3.7
1.18.12
2.9.2
1.9.6
4.2.0
4.2.0
6.4.3
1.15.6
3.8.0
5.6.23
4.4.6
4.17.6
3.1.57






top.wp
cx-flow
1.0-SNAPSHOT


 

org.springframework.boot
spring-boot-starter-web


 

com.baomidou
mybatis-plus-boot-starter
${mp.version}


 

mysql
mysql-connector-java
${mysql-connector-java.version}


 

com.alibaba
druid
${druid.version}


 

cn.hutool
hutool-all
${hutool.version}


 

org.projectlombok
lombok
${lombok.versin}





 



src/main/resources
 

**/*.properties
**/*.xml
**/*.yml

false


src/main/java

**/*.xml

false





⑤application.yml配置文件 注意xml的掃描

7b82a796-269e-11ee-962d-dac502259ad0.png

#服務(wù)配置
server:
port:8081
#spring相關(guān)配置
spring:
datasource:
driver-class-name:com.mysql.cj.jdbc.Driver
url:jdbc//localhost:3306/cx-xn?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT&nullCatalogMeansCurrent=true
username:root
password:root
servlet:
multipart:
max-request-size:100MB
max-file-size:100MB
jackson:
time-zone:GMT+8
date-format:yyyy-MM-ddHHss.SSS
locale:zh_CN
serialization:
#格式化輸出
indent_output:false

#mybaits相關(guān)配置
mybatis-plus:
#xml文件掃描
mapper-locations:classpath*:top/wp/cx/**/mapping/*.xml,classpath:/META-INF/modeler-mybatis-mappings/*.xml
configuration:
map-underscore-to-camel-case:true
cache-enabled:true
lazy-loading-enabled:true
multiple-result-sets-enabled:true
log-impl:org.apache.ibatis.logging.stdout.StdOutImpl

global-config:
banner:false
db-config:
id-type:assign_id
table-underline:true
enable-sql-runner:true
configuration-properties:
prefix:
blobType:BLOB
boolValue:TRUE

⑥啟動入口,注意spring和mapper掃描

7ba9eed2-269e-11ee-962d-dac502259ad0.png

packagetop.wp.cx.main;

importcn.hutool.log.StaticLog;
importorg.mybatis.spring.annotation.MapperScan;
importorg.springframework.boot.SpringApplication;
importorg.springframework.boot.autoconfigure.SpringBootApplication;
importorg.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan(basePackages={"top.wp.cx.modular.test"})//spring掃描
@MapperScan(basePackages={"top.wp.cx.modular.test.**.mapper"})//mybatis掃描mapper
publicclassCXApplication{
publicstaticvoidmain(String[]args){
SpringApplication.run(CXApplication.class,args);
StaticLog.info(">>>"+CXApplication.class.getSimpleName()+"啟動成功!");
}
}

⑦此時啟動cx-main的項目,訪問2-1的測試controller能訪問成功證明配置正確





審核編輯:劉清

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • SOA
    SOA
    +關(guān)注

    關(guān)注

    1

    文章

    283

    瀏覽量

    27426
  • JAVA語言
    +關(guān)注

    關(guān)注

    0

    文章

    138

    瀏覽量

    20076
  • gun
    gun
    +關(guān)注

    關(guān)注

    0

    文章

    6

    瀏覽量

    7629
  • SpringBoot
    +關(guān)注

    關(guān)注

    0

    文章

    173

    瀏覽量

    169

原文標(biāo)題:談?wù)?SpringBoot 業(yè)務(wù)組件化開發(fā)思路

文章出處:【微信號:芋道源碼,微信公眾號:芋道源碼】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。

收藏 人收藏

    評論

    相關(guān)推薦

    SpringBoot中的Druid介紹

    SpringBoot中Druid數(shù)據(jù)源配置
    發(fā)表于 05-07 09:21

    SpringBoot知識總結(jié)

    SpringBoot干貨學(xué)習(xí)總結(jié)
    發(fā)表于 08-01 10:40

    怎么學(xué)習(xí)SpringBoot

    SpringBoot學(xué)習(xí)之路(X5)- 整合JPA
    發(fā)表于 06-10 14:52

    springboot集成mqtt

    springboot集成mqtt,大綱一.數(shù)據(jù)入庫1.數(shù)據(jù)入庫解決方案二.開發(fā)實時訂閱發(fā)布展示頁面1.及時通訊技術(shù)2.技術(shù)整合
    發(fā)表于 07-16 07:53

    怎樣去使用springboot

    怎樣去使用springboot呢?學(xué)習(xí)springboot需要懂得哪些?
    發(fā)表于 10-25 07:13

    SpringBoot應(yīng)用啟動運行run方法

    )、refreshContext(context);SpringBoot刷新IOC容器【創(chuàng)建IOC容器對象,并初始容器,創(chuàng)建容器中的每一個組件】;如果是web應(yīng)用創(chuàng)建**AnnotationConfigEmbeddedWebA
    發(fā)表于 12-20 06:16

    SpringBoot配置嵌入式Servlet

    SpringBoot配置嵌入式Servlet容器定制和修改Servlet容器相關(guān)配置全局配置文件編寫WebServerFactoryCustomizer注冊Servlet三大組件注冊Servlet
    發(fā)表于 12-20 06:19

    基于組件業(yè)務(wù)模型的研究與設(shè)計

    業(yè)務(wù)基礎(chǔ)軟件平臺的基礎(chǔ)上提出了一個基于組件業(yè)務(wù)模型的解決方案。該方案由視圖維、通用層次維和生命周期維三個維度組成,運用業(yè)務(wù)模型驅(qū)動模式和基于組件
    發(fā)表于 08-04 09:23 ?10次下載

    深入了解SpringBoot的自動配置原理

    通過這篇文章我們來深入了解SpringBoot的自動配置原理,并分析SpringBoot是如何神不知,鬼不覺的幫我們做了那么多的事情,讓我們只需要關(guān)心業(yè)務(wù)邏輯開發(fā)就可以了。
    的頭像 發(fā)表于 04-07 11:22 ?942次閱讀
    深入了解<b class='flag-5'>SpringBoot</b>的自動配置原理

    什么是 SpringBoot

    本文從為什么要有 `SpringBoot`,以及 `SpringBoot` 到底方便在哪里開始入手,逐步分析了 `SpringBoot` 自動裝配的原理,最后手寫了一個簡單的 `start`
    的頭像 發(fā)表于 04-07 11:28 ?1265次閱讀
    什么是 <b class='flag-5'>SpringBoot</b>?

    SpringBoot常用注解及使用方法1

    基于 SpringBoot 平臺開發(fā)的項目數(shù)不勝數(shù),與常規(guī)的基于`Spring`開發(fā)的項目最大的不同之處,SpringBoot 里面提供了大量的注解用于快速
    的頭像 發(fā)表于 04-07 11:51 ?675次閱讀

    SpringBoot的核心注解2

    今天跟大家來探討下SpringBoot的核心注解@SpringBootApplication以及run方法,理解下springBoot為什么不需要XML,達(dá)到零配置
    的頭像 發(fā)表于 04-07 14:34 ?1925次閱讀
    <b class='flag-5'>SpringBoot</b>的核心注解2

    使用springboot完成流程的業(yè)務(wù)功能

    使用springboot開發(fā)流程使用的接口完成流程的業(yè)務(wù)功能 基于 Spring Boot + MyBatis Plus + Vue Element 實現(xiàn)的后臺管理系統(tǒng) + 用戶小程序,支持 RBAC
    的頭像 發(fā)表于 05-15 17:40 ?676次閱讀
    使用<b class='flag-5'>springboot</b>完成流程的<b class='flag-5'>業(yè)務(wù)</b>功能

    Springboot項目的集成以及具體使用及配置

    ? 概念 核心組件 API介紹 Springboot集成 具體業(yè)務(wù)集成 API使用 ? 前言 項目中需要用到工作流引擎來設(shè)計部分業(yè)務(wù)流程,框架選型最終選擇了 Camunda7,關(guān)于 C
    的頭像 發(fā)表于 07-03 11:18 ?1471次閱讀
    <b class='flag-5'>Springboot</b>項目的集成以及具體使用及配置

    javaweb和springboot能一起用嗎

    JavaWeb 和 SpringBoot 是兩種針對 Java 程序開發(fā)的框架,它們可以在一起使用。在本文中,我將詳細(xì)介紹 JavaWeb 和 SpringBoot 的關(guān)系,并探討如何結(jié)合使用這兩個
    的頭像 發(fā)表于 11-16 10:54 ?2052次閱讀