ABPvNext框架学习教程APB vNext 框架⼊门
快速⼊门案例
.NET Core 控制台应⽤
1. 安装 ABP 框架核⼼依赖
Install-Package Volo.Abp.Core -Version 3.3.2
2. 新建 ABP 应⽤的启动模块
HelloAbpModule.cs
using Volo.Abp.Modularity;
namespace HelloAbp
{
/// <summary>
/
// 启动模块
/// </summary>
public class HelloAbpModule : AbpModule
{
}
}
3. 新建服务,并注册到启动模块中
HelloWorldService.cs
using System;
using Volo.Abp.DependencyInjection;
namespace HelloAbp
{
/// <summary>
/// TODO: ABP 注册服务⽅式⼀:继承接⼝
/// ISingletonDependency、IScopedDependency、ITransientDependency
/// </summary>
public class HelloWorldService : ITransientDependency
{
public void Run()
{
Console.WriteLine($"{nameof(HelloAbpModule)}-{nameof(HelloWorldService)}: Hello World!");
}
}
}
4. 根据启动模块创建 ABP应⽤,调⽤应⽤中注册的服务⽅法
Program.cs
using System;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
namespace HelloAbp
{
class Program
{
static void Main(string[] args)
{
// 根据启动模块创建 abp 应⽤
var application = AbpApplicationFactory.Create<HelloAbpModule>();
// 初始化 abp 应⽤
application.Initialize();
// 获取应⽤中注册的服务
var service = application.ServiceProvider.GetService<HelloWorldService>();
// 调⽤应⽤中的服务⽅法
service.Run();
Console.ReadKey();
}
}
ASP.NET Core Web 应⽤程序
1. 安装 ABP 框架核⼼依赖
Install-Package Volo.Abp.Core -Version 3.3.2
writeline教程Install-Package Volo.Abp.AspNetCore.Mvc -Version 3.3.2
2.新建 ABP 应⽤的启动模块
AppModule.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Hosting;
using Volo.Abp;
using Volo.Abp.AspNetCore.Mvc;
using Volo.Abp.Modularity;
namespace HelloWebAbp
{
/// <summary>
/// 启动模块
/
// TODO: 1.在启动模块中配置 ASP.NET Core Web 程序的管道,就需要定义对 ASP.NET Core Mvc模块的依赖 /// </summary>
[DependsOn(typeof(AbpAspNetCoreMvcModule))]
public class AppModule : AbpModule
{
/// <summary>
/// 应⽤初始化⽅法
/// TODO: 2.重写 ABP 应⽤的初始化⽅法,⽤来构建 ASP.NET Core 应⽤程序的中间件管道
/// </summary>
/// <param name="context"></param>
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
// base.OnApplicationInitialization(context);
var app = context.GetApplicationBuilder();
var env = context.GetEnvironment();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseRouting();
// TODO: 5.将程序应⽤的端点配置修改为 ABP 应⽤的端点配置
app.UseConfiguredEndpoints();
}
}
}
3. 注册 ABP 启动模块,并初始化 ABP 应⽤
Startup.cs
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HelloWebAbp
{
/// <summary>
/// 程序启动类
/// TODO: 3. 在 Startup 类中,完成对 ABP 应⽤的初始化
/// </summary>
public class Startup
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit go.microsoft/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services)
{
services.AddApplication<AppModule>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.InitializeApplication();
}
}
}
4. 新建控制器,测试 ABP 应⽤运⾏状态
HomeController.cs
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Volo.Abp.AspNetCore.Mvc;
namespace HelloWebAbp.Controllers
{
/// <summary>
/// 控制器
/
// TODO: 4. 继承 Abp 框架中的基类控制器(提供了⼀些便捷的服务和⽅法)
/// </summary>
public class HomeController : AbpController
{
public IActionResult Index()
{
return Content("Hello world!");
}
}
}
各个击破案例
ABP应⽤中的模块可以有很多个,但是启动模块只能有⼀个;
ABP应⽤中的每个模块之间没有必然的联系;
ABP应⽤中每个模块注册的服务,都注册到了ABP应⽤的全局容器中;
ABP应⽤中的模块也分为两种类型:应⽤程序模块(业务实现)和框架模块(技术实现);
ABP应⽤中最顶层的模块是启动模块,最后被加载的也是启动模块。
在模块中注册⾃定义服务
HelloAbpModule.cs
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.Abp.Modularity;
namespace HelloAbp
{
/// <summary>
/// 启动模块
/// </summary>
public class HelloAbpModule : AbpModule
{
// TODO: 重写 ABP 模块的服务配置⽅法,向模块中注册⾃定义的服务
public override void ConfigureServices(ServiceConfigurationContext context)
{
base.ConfigureServices(context);
// TODO: ABP 注册服务⽅式⼆:模块注册
context.Services.AddTransient<HelloWorldService>();
}
}
⼩结
初始化ABP模块
1.注册ABP基础设施与核⼼服务(模块系统相关)
2.加载整个应⽤的所有模块,按照依赖性排序
3.按顺序遍历所有模块,执⾏每⼀个模块的配置⽅法
4.按顺序遍历所有模块,执⾏每⼀个模块的初始化⽅法
使⽤标签属性注册⾃定义服务
HelloWorldService.cs
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.DependencyInjection;
namespace HelloAbp
{
/// <summary>
/
// TODO: ABP 注册服务⽅式三:特性标签
/// ServiceLifetime.Singleton、ServiceLifetime.Scoped、ServiceLifetime.Transient
/// </summary>
[Dependency(ServiceLifetime.Transient)]
public class HelloWorldService
{
public void Run()
{
Console.WriteLine($"{nameof(HelloAbpModule)}-{nameof(HelloWorldService)}: Hello World!"); }
}
}
ABP 项⽬中使⽤ Autofac
1. 安装 Autofac 模块
Install-Package Volo.Abp.Autofac -Version 3.3.2
2. 在模块中创建对 Autofac 模块的依赖
HelloAbpModule.cs
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
namespace HelloAbp
{
/// <summary>
/// 启动模块
/// </summary>
// TODO: 使⽤ Autofac 第三⽅依赖注⼊框架(提供了更多的⾼级特性)
[DependsOn(typeof(AbpAutofacModule))]
public class HelloAbpModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
base.ConfigureServices(context);
context.Services.AddTransient<HelloWorldService>();
}
}
}
3. 在ABP应⽤创建时集成 Autofac
Program.cs
using System;
using Volo.Abp;
namespace HelloAbp
{
class Program
{
static void Main(string[] args)
{
{
// 根据启动模块创建 abp 应⽤
var application = AbpApplicationFactory.Create<HelloAbpModule>(options => {
// 集成 Autofac
options.UseAutofac();
});
/
/ 初始化 abp 应⽤
application.Initialize();
// 获取应⽤中注册的服务
var service = application.ServiceProvider.GetService<HelloWorldService>(); // 调⽤应⽤中的服务⽅法
service.Run();
}
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
完整案例代码
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论