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)如下圖:
②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("") publicList testResult(){ returntestService.list(); } @GetMapping("/2") publicStringtestResult2(){ return"22"; } }
至此項目準(zhǔn)備完成,其實就是簡單見了一個測試項目,此時如果你按照上面的步驟,寫了啟動類和配置項信息,項目是可以獨立運行的。
2-2項目打包、引入、運行
①將2-1中的測試項目進行打包:install右鍵第一個選項
②此時你的本地maven倉庫會出現(xiàn)剛才的項目(當(dāng)然前提是你的idea配置過本地的maven)
③新建另外一個項目cx-main
④pom文件如下:注意將你剛才的準(zhǔn)備測試的項目引入進來
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的掃描
#服務(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掃描
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能訪問成功證明配置正確
審核編輯:劉清
-
SOA
+關(guān)注
關(guān)注
1文章
283瀏覽量
27426 -
JAVA語言
+關(guān)注
關(guān)注
0文章
138瀏覽量
20076 -
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)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論