基于ASP.NET MVC的ABP框架入门学习教程
为什么使用abp
我们近几年陆续开发了一些web应用和桌面应用,需求或简单或复杂,实现或优雅或丑陋。一个基本的事实是:我们只是积累了一些经验或提高了对,net的熟悉程度。
随着软件开发经验的不断增加,我们发现其实很多工作都是重复机械的,而且随着软件复杂度的不断提升,以往依靠经验来完成一些简单的增删改查的做法已经行不通了。特别是用户的要求越来越高,希望添加的功能越来多,目前这种开发模式,已经捉襟见肘。我很难想象如何在现有的模式下进行多系统的持续集成并添加一些新的特性。
开发一个系统时,我们不可避免的会使用各种框架。数据持久层实现、日志、asp.net mvc、ioc以及自动映射等。一个高质量的软件系统往往还有全局容错,消息队列等组件。
把上述这些组件组合到一起的时候,其复杂度会急剧上升。一般个人和小团队的技术水平,很难设计出一个均衡协调的框架。对于传统的所谓三层架构,我也是很持怀疑态度的。(月薪15k的程序员搞的三层架构,我也仔细读过,也是问题多多,并不能解释为什么要使用三层)。
其实,我们无非是希望在编程的时候,把大部分的注意力全部集中到业务实现上。不要过多的考虑基础的软件结构上的种种问题。应该有一个框框或者一种范式来提供基本的服务,如日志、容错和aop,di等。
稍微正规一点的公司经过多年沉淀都形成了自己的内部软件框架,他们在开发软件的时候并不是从一片空白开始的。而是从一个非常牢固的基础平台上开始构建的。这样大大提高了开发速度,而且一种架构往往也决定了分工协作的模式。我们目前之所以无法分工协作,根本原因也是缺少一套成熟稳定的基础开发架构和工作流程。
目前.net上有不少开源框架。比如apworks和abp。其中apworks是中国人写的一套开源框架。它是一个全功能的,不仅可以写分布式应用,也可以写桌面应用。abp的全称是asp.net boilerplate project(asp.net样板工程)。是github上非常活跃的一个开源项目。它并没有使用任何新的技术,只是由两名架构师将asp.net开发中常用的一些工具整合到了一起,并且部分实现了ddd的概念。是一个开箱即用的框架,可以作为asp.net分布式应用的一个良好起点。
使用框架当然有代价,你必须受到框架强api的侵入,抑或要使用他的方言。而且这个框架想要吃透,也要付出很大的学习成本。但是好处也是显而易见的。业界顶尖的架构师已经为你搭建好了一套基础架构,很好的回应了关于一个软件系统应该如何设计,如何规划的问题,并且提供了一套最佳实践和范例。
学习虽然要付出成本,但是经过漫长的跋涉,我们从一无所知已经站到了工业级开发的门槛上。基于这个框架,我们可以很好的来划分任务,进行单元测试等。大大降低了软件出现bug的几率。
从模板创建空的web应用程序
abp的官方网站:http://www.aspnetboilerplate.com
abp在github上的开源项目:https://github.com/aspnetboilerplate
abp提供了一个启动模板用于新建的项目(尽管你能手动地创建项目并且从nuget获得abp包,模板的方式更容易)。
转到www.aspnetboilerplate.com/templates从模板创建你的应用程序。
你可以选择spa(angularjs或durandaljs)或者选择mpa(经典的多页面应用程序)项目。可以选择entity framework或nhibernate作为orm框架。
这里我们选择angularjs和entity framework,填入项目名称“simpletasksystem”,点击“create my project”按钮可以下载一个zip压缩包,解压后得到vs2013的解决方案,使用的.net版本是 4.5.1。
每个项目里引用了abp组件和其他第三方组件,需要从nuget下载。
黄色感叹号图标,表示这个组件在本地文件夹中不存在,需要从nuget上还原。操作如下:
要让项目运行起来,还得创建一个数据库。这个模板假设你正在使用sql2008或者更新的版本。当然也可以很方便地换成其他的关系型数据库。
打开web.config文件可以查看和配置链接字符串:
<add name="default" connectionstring="server=localhost; database=simpletasksystemdb; trusted_connection=true;" />
就这样,项目已经准备好运行了!打开vs2013并且按f5:
创建实体
把实体类写在core项目中,因为实体是领域层的一部分。
一个简单的应用场景:创建一些任务(tasks)并分配给人。 我们需要task和person这两个实体。
task实体有几个属性:描述(description)、创建时间(creationtime)、任务状态(state),还有可选的导航属性(assignedperson)来引用person。
public class task : entity<long> { [foreignkey("assignedpersonid")] public virtual person assignedperson { get; set; } public virtual int? assignedpersonid { get; set; } public virtual string description { get; set; } public virtual datetime creationtime { get; set; } public virtual taskstate state { get; set; } public task() { creationtime = datetime.now; state = taskstate.active; } }
public class person : entity { public virtual string name { get; set; } }
创建dbcontext
使用entityframework需要先定义dbcontext类,abp的模板已经创建了dbcontext文件,我们只需要把task和person类添加到idbset,请看代码:
public class simpletasksystemdbcontext : abpdbcontext { public virtual idbset<task> tasks { get; set; } public virtual idbset<person> people { get; set; } public simpletasksystemdbcontext() : base("default") { } public simpletasksystemdbcontext(string nameorconnectionstring) : base(nameorconnectionstring) { } }
通过database migrations创建数据库表
我们使用entityframework的code first模式创建数据库架构。abp模板生成的项目已经默认开启了数据迁移功能,我们修改simpletasksystem.entityframework项目下migrations文件夹下的configuration.cs文件:
internal sealed class configuration :
dbmigrationsconfiguration<simpletasksystem.entityframework.simpletasksystemdbcontext> { public configuration() { automaticmigrationsenabled = false; } protected override void seed(simpletasksystem.entityframework.simpletasksystemdbcontext context) { context.people.addorupdate( p => p.name, new person {name = "isaac asimov"}, new person {name = "thomas more"}, new person {name = "george orwell"}, new person {name = "douglas adams"} ); } }
在vs2013底部的“程序包管理器控制台”窗口中,选择默认项目并执行命令“add-migration initialcreate”
会在migrations文件夹下生成一个xxxx-initialcreate.cs文件,内容如下:
public partial class initialcreate : dbmigration { public override void up() { createtable( "dbo.stspeople", c => new { id = c.int(nullable: false, identity: true), name = c.string(), }) .primarykey(t => t.id); createtable( "dbo.ststasks", c => new { id = c.long(nullable: false, identity: true), assignedpersonid = c.int(), description = c.string(), creationtime = c.datetime(nullable: false), state = c.byte(nullable: false), }) .primarykey(t => t.id) .foreignkey("dbo.stspeople", t => t.assignedpersonid) .index(t => t.assignedpersonid); } public override void down() { dropforeignkey("dbo.ststasks", "assignedpersonid", "dbo.stspeople"); dropindex("dbo.ststasks", new[] { "assignedpersonid" }); droptable("dbo.ststasks"); droptable("dbo.stspeople"); } }
pm> update-database
数据库显示如下:
(以后修改了实体,可以再次执行add-migration和update-database,就能很轻松的让数据库结构与实体类的同步)
定义仓储接口
通过仓储模式,可以更好把业务代码与数据库操作代码更好的分离,可以针对不同的数据库有不同的实现类,而业务代码不需要修改。
定义仓储接口的代码写到core项目中,因为仓储接口是领域层的一部分。
我们先定义task的仓储接口:
public interface itaskrepository : irepository<task, long> { list<task> getallwithpeople(int? assignedpersonid, taskstate? state); }
它继承自abp框架中的irepository泛型接口。
在irepository中已经定义了常用的增删改查方法:
所以itaskrepository默认就有了上面那些方法。可以再加上它独有的方法getallwithpeople(...)。
不需要为person类创建一个仓储类,因为默认的方法已经够用了。abp提供了一种注入通用仓储的方式,将在后面“创建应用服务”一节的taskappservice类中看到。
实现仓储类
我们将在entityframework项目中实现上面定义的itaskrepository仓储接口。
通过模板建立的项目已经定义了一个仓储基类:simpletasksystemrepositorybase(这是一种比较好的实践,因为以后可以在这个基类中添加通用的方法)。
public class taskrepository : simpletasksystemrepositorybase<task, long>, itaskrepository { public list<task> getallwithpeople(int? assignedpersonid, taskstate? state) { //在仓储方法中,不用处理数据库连接、dbcontext和数据事务,abp框架会自动处理。 var query = getall(); //getall() 返回一个 iqueryable<t>接口类型 //添加一些where条件 if (assignedpersonid.hasvalue) { query = query.where(task => task.assignedperson.id == assignedpersonid.value); } if (state.hasvalue) { query = query.where(task => task.state == state); } return query .orderbydescending(task => task.creationtime) .include(task => task.assignedperson) .tolist(); } }
taskrepository继承自simpletasksystemrepositorybase并且实现了上面定义的itaskrepository接口。
创建应用服务(application services)
在application项目中定义应用服务。首先定义task的应用服务层的接口:
public interface itaskappservice : iapplicationservice { gettasksoutput gettasks(gettasksinput input); void updatetask(updatetaskinput input); void createtask(createtaskinput input); }
itaskappservice继承自iapplicationservice,abp自动为这个类提供一些功能特性(比如依赖注入和参数有效性验证)。
然后,我们写taskappservice类来实现itaskappservice接口:
public class taskappservice : applicationservice, itaskappservice { private readonly itaskrepository _taskrepository; private readonly irepository<person> _personrepository; /// <summary> /// 构造函数自动注入我们所需要的类或接口 /// </summary> public taskappservice(itaskrepository taskrepository, irepository<person> personrepository) { _taskrepository = taskrepository; _personrepository = personrepository; } public gettasksoutput gettasks(gettasksinput input) { //调用task仓储的特定方法getallwithpeople var tasks = _taskrepository.getallwithpeople(input.assignedpersonid, input.state); //用automapper自动将list<task>转换成list<taskdto> return new gettasksoutput { tasks = mapper.map<list<taskdto>>(tasks) }; } public void updatetask(updatetaskinput input) { //可以直接logger,它在applicationservice基类中定义的 logger.info("updating a task for input: " + input); //通过仓储基类的通用方法get,获取指定id的task实体对象 var task = _taskrepository.get(input.taskid); //修改task实体的属性值 if (input.state.hasvalue) { task.state = input.state.value; } if (input.assignedpersonid.hasvalue) { task.assignedperson = _personrepository.load(input.assignedpersonid.value); } //我们都不需要调用update方法 //因为应用服务层的方法默认开启了工作单元模式(unit of work) //abp框架会工作单元完成时自动保存对实体的所有更改,除非有异常抛出。有异常时会自动回滚,因为工作单元默认开启数据库事务。 } public void createtask(createtaskinput input) { logger.info("creating a task for input: " + input); //通过输入参数,创建一个新的task实体 var task = new task { description = input.description }; if (input.assignedpersonid.hasvalue) { task.assignedpersonid = input.assignedpersonid.value; } //调用仓储基类的insert方法把实体保存到数据库中 _taskrepository.insert(task); } }
taskappservice使用仓储进行数据库操作,它通往构造函数注入仓储对象的引用。
数据验证
如果应用服务(application service)方法的参数对象实现了iinputdto或ivalidate接口,abp会自动进行参数有效性验证。
createtask方法有一个createtaskinput参数,定义如下:
public class createtaskinput : iinputdto { public int? assignedpersonid { get; set; } [required] public string description { get; set; } }
description属性通过注解指定它是必填项。也可以使用其他 data annotation 特性。
如果你想使用自定义验证,你可以实现icustomvalidate 接口:
public class updatetaskinput : iinputdto, icustomvalidate { [range(1, long.maxvalue)] public long taskid { get; set; } public int? assignedpersonid { get; set; } public taskstate? state { get; set; } public void addvalidationerrors(list<validationresult> results) { if (assignedpersonid == null && state == null) { results.add(new validationresult("assignedpersonid和state不能同时为空!", new[] { "assignedpersonid", "state" })); } } }
你可以在addvalidationerrors方法中写自定义验证的代码。
创建web api服务
abp可以非常轻松地把application service的public方法发布成web api接口,可以供客户端通过ajax调用。
dynamicapicontrollerbuilder .forall<iapplicationservice>(assembly.getassembly(typeof (simpletasksystemapplicationmodule)), "tasksystem") .build();
simpletasksystemapplicationmodule这个程序集中所有继承了iapplicationservice接口的类,都会自动创建相应的apicontroller,其中的公开方法,就会转换成webapi接口方法。
可以通过http://xxx/api/services/tasksystem/task/gettasks这样的路由地址进行调用。
通过上面的案例,大致介绍了领域层、基础设施层、应用服务层的用法。
现在,可以在asp.net mvc的controller的action方法中直接调用application service的方法了。
如果用spa单页编程,可以直接在客户端通过ajax调用相应的application service的方法了(通过创建了动态web api)。
推荐阅读
-
基于ASP.NET MVC的ABP框架入门学习教程
-
解读ASP.NET 5 & MVC6系列教程(12):基于Lamda表达式的强类型Routing实现
-
Python的爬虫程序编写框架Scrapy入门学习教程
-
基于ASP.NET MVC的ABP框架入门学习教程
-
解读ASP.NET 5 & MVC6系列教程(12):基于Lamda表达式的强类型Routing实现
-
Spring mvc整合tiles框架的简单入门教程(maven)
-
JavaScript的React框架中的JSX语法学习入门教程
-
从零开始学习Node.js系列教程之基于connect和express框架的多页面实现数学运算示例
-
ASP.NET MVC+EF框架+EasyUI实现权限管理系列(9)-TT模板的学习
-
JavaScript的React框架中的JSX语法学习入门教程