1 Star 0 Fork 35

云勇 / Partner.Surround

forked from SAssassin / Partner.Surround 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

Partner.Surround

迁入到Pear Admin社区
https://gitee.com/pear-admin

PearAdmin Abp仓库地址
https://gitee.com/pear-admin/pear-admin-abp

独木难成舟,滴水汇江河

介绍

基于ABP框架封装一套MPA框架,使用Layui作为前端呈现,封装常用的功能。旨在设计快速入手,快速实践框架。
稳定地址(新版):http://119.3.138.127/
测试地址(新版):http://119.3.138.127:9527/
稳定地址(老版):http://119.3.138.127:9500/

软件架构

基于Abp框架并接入Pear Admin前端框架,Pear Admin框架基于Layui封装,两者均开源免费。

项目结构

整体的解决方案结构划分如下,其中Surround.Admin重命名了ABP默认提供的Web.Mvc项目,一是从结构上出发,看起来更显得从上至下的分层结构,二是从请求路径上一目了然。并额外增加了Surround.Gateway,以此来增加防腐层,方便各限界上下文间不要直接请求,通过防腐层约束请求调用。

- Surround
    -src
        - Surround.Admin
        - Surround.Application
        - Surround.Core
        - Surround.EntityFrameworkCore
        - Surround.Gateway
    - test
        - Surround.Admin.Tests
        - Surround.Application.Tests
        - Surround.Core.Tests
    - tool
        - Surround.Migrator
        - Surround.Shared

说明:Admin为UI层,Application和Core为应用层和领域层,EntityFrameworkCore和Gateway及ABP自身提供的辅助设施组合为基础设施层。

输入图片说明

代码模型

从DDD的角度考虑,抛弃UI层,以应用层,领域层,基础设施层去出发,按照文件夹隔离出限界上下文边界,内部代码模型如下

- Surround.Application
    - AContext
        - AAggregate
    - BContext
        - BAggregate
        - ...
- Surround.Core
    - AContext
        - AAggregate
    - BContext
        - BAggregate
        - ...
- Surround.EntityFrameworkCore
- Surround.Gateway
    - AContext

防腐层的建立,约定在领域层建立防腐层接口,在基础设施层-网关中实现接口,网关层对Application层有项目依赖,方便实例化下游上下文所需要的上游上下文。为避免出现循环引用,上下文映射图中最好不要出现环。

- Surround.Application
    - AContext
    - BContext
- Surround.Core
    - AContext
        - ...
        - AntiCorruption
            - IBService
    - BContext
- Surround.EntityFrameworkCore
- Surround.Gateway
    - AContext
        - AntiConrruption
            - BService

如限界上下文A需要访问上下文B中信息或需要B上下文协作,则通过A建立的防腐层接口与实现访问B上下文中的服务,以此来避免直接耦合。 输入图片说明

部署方式

老版采用Jenkins与Docker Compose进行持续集成,利用腾讯云Coding中的制品库作为镜像存储仓库。
新版采用Coding直接完成持续集成。
Coding:https://coding.net/

快速部署

下载镜像
docker pull starcity-docker.pkg.coding.net/partner.surround/imageservice/partnersurround:latest

简化名称
docker tag starcity-docker.pkg.coding.net/partner.surround/imageservice/partnersurround partnersurround

运行网站
docker run -dit -p 9527:80 --env ASPNETCORE_ENVIRONMENT=Development partnersurround partnersurround

注:数据库链接使用的测试环境地址,方便直接部署运行。

整体流程

输入图片说明

使用文档

采用宿主-单租户模式,分为宿主登录页面与租户登录页面

注:对于两者登录页面均相同,仅在url上体现差异,以此来作为宿主与租户差异

开发文档

《ABP开发规范》https://shimo.im/docs/JHjThwvvyRKXtYKJ/

The MIT License (MIT) Copyright (c) 2016 ASP.NET Boilerplate Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

基于ABP框架封装一套MPA框架,使用Layui作为前端呈现。旨在整合快速入手,快速实践框架。账号/密码:admin/123qwe 展开 收起
C#
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
C#
1
https://gitee.com/yunyongzhang/Partner.Surround.git
git@gitee.com:yunyongzhang/Partner.Surround.git
yunyongzhang
Partner.Surround
Partner.Surround
master

搜索帮助