上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页
摘要: 1.问题 .net core 3.1 发布时会多不少如下文件夹,如下图: 2.产生原因 由Microsoft.VisualStudio.Web.CodeGeneration.Design包导致 3.解决方法 如果确实需要某种语言资源文件,可以这样,右键编辑项目文件,在<PropertyGroup>添 阅读全文
posted @ 2021-11-12 15:44 刘小吉 阅读(1173) 评论(0) 推荐(1)
摘要: 安装nuget包 NLog安装 "NLog.Extensions.Logging" 包含 "NLog" Serilog "Serilog.AspNetCore" 包含"Serilog" ,"Serilog.Extensions.Hosting", "Serilog.Formatting.Compac 阅读全文
posted @ 2021-09-09 16:26 刘小吉 阅读(4325) 评论(0) 推荐(2)
摘要: Logging 三大对象 可以看到 Logging 的核心抽象就是三个接口,分别是: ILogger:负责具体的日志写入逻辑,如:FileLogger,ConsoleLogger,SQLLogger,ElasticsearchLogger 等。 ILoggerProvider:用来创建记录器,一般和 阅读全文
posted @ 2021-09-09 15:36 刘小吉 阅读(643) 评论(0) 推荐(1)
摘要: 准备数据 CREATE TABLE `demo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `parent_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGI 阅读全文
posted @ 2021-09-02 15:46 刘小吉 阅读(10103) 评论(4) 推荐(3)
摘要: 一、背景介绍 pollo(阿波罗)是携程框架部门研发的配置管理平台,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性。 服务端基于 Spring Boot 和 Spring Cloud 开发,打包后可以直接运行,不需要额外安装 Tomca 阅读全文
posted @ 2021-07-30 15:52 刘小吉 阅读(1189) 评论(0) 推荐(0)
摘要: version: '3' services: op: build: context : ./op/bin dockerfile : Dockerfile ports: - "8541:6000" volumes: - /home/docker-compose/op/config/appsetting 阅读全文
posted @ 2021-06-28 14:10 刘小吉 阅读(149) 评论(0) 推荐(0)
摘要: 1.ABP动态代理是根据我们定义的IxxAppService 接口生成的Resutful风格的Http请求实现 2.默认只需要依赖 AbpHttpClientModule 模块 和你的 xxApplicationContractsModule 应用接口模块 [DependsOn(new Type[] 阅读全文
posted @ 2021-02-20 15:19 刘小吉 阅读(1607) 评论(0) 推荐(1)
摘要: RsaBaseParameters using System.Security.Cryptography; using System.Text; namespace Benchint.Util.Rsa.Models { /// <summary> /// RSA基础参数 /// </summary> 阅读全文
posted @ 2021-01-07 17:21 刘小吉 阅读(284) 评论(0) 推荐(0)
摘要: 1.安装jenkins 下载地址:https://www.jenkins.io/download/ 2.需要配置java环境 配置教程:https://www.cnblogs.com/liuxiaoji/p/5729124.html 3.初始化jenkins配置目录 注:为什么要修改工作目录 因为默 阅读全文
posted @ 2020-12-08 13:51 刘小吉 阅读(1098) 评论(0) 推荐(1)
摘要: 新建表 CREATE TABLE `data_source` ( `Id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `TableName` varchar(255) CHARACTER SET ut 阅读全文
posted @ 2020-08-03 17:46 刘小吉 阅读(260) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页