文章目录


1.说明:

一、4a-server服务拆分成3个服务(组件)

1.4a-server-api组件

定义4a-server和4a-element-server的接口API,注入时通过该api进行注入

2.4a-server服务(组件)

原有的4a-server服务,移除要素库相关表数据维护功能

3.4a-element-server服务(组件)

从4a-server中抽出账套、财政区划、分类、机构和要素、序列实现的独立服务(组件)

服务(组件):即可作为服务独立部署,也可作为组件依赖到其它服务中

二、关于服务可拆可合的服务(组件)设计规划图

4A服务按库拆分|组件、服务|合并打包、独立打包(进行中)_java

关于服务可拆可合的逻辑设计:

当服务合并打包时,通过API实现的Controller的Bean注入实现方法调用

当服务独立打包是,通过API实现的FeignClient的注入实现接口调用

关于FeignClient组件包的意义:

1.当有多个其它服务需要调用ELEMENT服务时,通过FeignClient组件包统一定义方便维护

2.也可以在服务中定义FeignClient,根据打包需要通过配置控制FeignClient生效与否

2.总结(收获和感受)

实际一周的工作干了大半个月;

概念不清:关于feign调用、关于maven;

3.实现

4A-server-api:定义接口,注入时通过该api实现注入;共用的常量、异常、工具类

4A服务按库拆分|组件、服务|合并打包、独立打包(进行中)_数据源配置_02

4A-element-server服务(也可以作为组件)(连接element库)


作为组件的时候:

注释掉启动类
注释掉pom文件中build标签内容
注释掉feign调用依赖


4A-server服务(连接frame库)


数据源配置报错

【报错如下】

4A服务按库拆分|组件、服务|合并打包、独立打包(进行中)_java_03

Error starting ApplicationContext. To display the conditions report re-run your application with ‘debug’ enabled.

2021-11-09 23:56:29.331 ERROR 29608 — [ main] o.s.b.d.LoggingFailureAnalysisReporter :


APPLICATION FAILED TO START


Description:

Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class

Action:

Consider the following:

If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.

If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).

【排查错误】

①application中url地址

②数据库配置

③pom文件中依赖的引入

我的错误原因在于:

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>