ABP VNext采坑记录
1、数据迁移:将.DbMigrator的项目设置为启动项目,Ctrl+F5执行,进行数据迁移,可以执行seed种子数据。如果按照abp之前的方式,使用EF Core的 update-database命令,知会创建表结构,不会执行seed种子文件。
2、部署前,通过XXX.DbMigrato创建数据库时,先将appsettings.json中相关URL改成部署后的系统地址,此时数据库中会自动创建对用的种子数据。
或者,在数据库创建成功后,手动修改以下IdetityServer的相关表数据:
select * from IdentityServerClientCorsOrigins
select * from IdentityServerClientPostLogoutRedirectUris
select * from IdentityServerClientRedirectUris
修改完后,记得服务器IIS重启,客户端浏览器缓存清除。
3、服务器上IdentityServer项目、Swagger项目配置如下:
4、解决CurrentUser中,Name、Surname值为null问题,参考解决方式:https://github.com/abpframework/abp/issues/6571。
或手工在表IdentityServerApiResourceClaims中,插入两行数据:
-
http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname
-
http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname
Sql:
INSERT INTO [dbo].[IdentityServerApiResourceClaims] SELECT 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname', ApiResourceId FROM [dbo].[IdentityServerApiResourceClaims] GROUP BY ApiResourceId UNION SELECT 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname', ApiResourceId FROM [dbo].[IdentityServerApiResourceClaims] GROUP BY ApiResourceId
本文来自博客园,作者:瘋孑,转载请注明原文链接:https://www.cnblogs.com/WebApp-DotNet/p/17102420.html