分类

链接

2025 年 1 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

vue使用element-ui中的Message 、MessageBox 、Notification

import Vue from 'vue'; import ElementUI from 'element-ui'; // 添加响应拦截器 axios.interceptors.response.use(function (response) { // 对响应数据做点什么 // console.log('对响应数据做点什么') return response; }, function (error) { // 对响应错误做点什么 console.log(ElementUI) //Message 消息提示 ElementUI.Message({ message: '恭喜你,这是一条成功消息', type: 'success' }); //Notification 通知 ElementUI.Notification({ title: '警告', message: '这是一条警告的提示消息', type: 'warni...

.NET, 前端 暂无评论 阅读(377)

Asp.Net Core Filter 深入浅出的那些事-AOP

一、前言 在分享ASP.NET Core Filter 使用之前,先来谈谈AOP,什么是AOP 呢? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP技术利用一种称为“横切”的技术,剖解开封装对象的内部,将影响多个类的公共行为封装到一个可重用的模块中,并将其命名为Aspect切面。所谓的切面,简单来说就是与业务无关,却为业务模块所共同调用的逻辑,将其封装起来便于减少系统的重复代码,降低模块的...

.NET 暂无评论 阅读(303)

docker单节点启动consul

内网: docker run --restart=always -d --net=host --name=consul -e 'CONSUL_LOCAL_CONFIG={"skip_leave_on_interrupt": true}' consul agent -server -bind=172.16.198.144 -bootstrap-expect=1 -ui   外网: docker run --restart=always -d --net=host --name=consul -p 8300:8300 -e 'CONSUL_LOCAL_CONFIG={"skip_leave_on_interrupt": true}' consul agent -server -bind=116.62.243.164 -bootstrap-expect=1 -ui

.NET, 云计算, 大数据 评论(1) 阅读(321)

.NET Core使用Nlog记录日志

1.引入Nuget包 Nlog Nlog.Web.AspNetCore 2.添加nlog配置文件 <?xml version="1.0" encoding="utf-8"?> <nlogxmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true" internalLogLevel="Warn" internalLogFile="internal-nlog.txt"> <!--define various log targets--> <targets> <!--write logs to file--> <targetxsi:type="File"name="allfile"fileName="nlog-all-${shortdate}.log" layout="${l...

.NET 暂无评论 阅读(329)

.netcore3返回JOSN首字母大写

在.netcore2中,我们这样写: services.AddMvc().AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver()); .netcore3返回JOSN首字母大写: services.AddMvc().AddJsonOptions(options => options.JsonSerializerOptions.PropertyNamingPolicy = null);

.NET 暂无评论 阅读(373)

.Net Core2.2升级到3.1

.NET Core 3.1 作为LTS长期支持版本,会提供3年的支持(明年就出.net5),值得升级(吗)。 目前主流的第三方包大多都已经提供了支持,2.x => 3.1还是变化不是特别多,EF Core坑就大咯,谨慎。   ASP.NET Core 3.1 的新增功能 https://docs.microsoft.com/zh-cn/aspnet/core/release-notes/aspnetcore-3.1?view=aspnetcore-3.1 EF Core 3.0重大改变 https://docs.microsoft.com/zh-cn/ef/core/what-is-new/ef-core-3.0/breaking-changes   1,将VS2019更新到16.4.x,会自动安装3.1的SDK。 2,将项目目标...

.NET 暂无评论 阅读(464)

linux下dotnet restore报SSL证书错误

linux下dotnet restore报SSL证书错误: + dotnet restore /usr/share/dotnet/sdk/2.1.802/NuGet.targets(123,5): error : Unable to load the service index for source https://api.nuget.org/v3/index.json. [/var/lib/jenkins/workspace/api-deploy/api.src/Yoga.sln] /usr/share/dotnet/sdk/2.1.802/NuGet.targets(123,5): error :   The SSL connection could not be established, see inner exception. [/var/lib/jenkins/workspace/api-deploy/api.src/Yoga.sln] /usr/share/dotnet/sdk/2.1.802/NuGet.tar...

.NET, LINUX 暂无评论 阅读(425)

MSB4019: The imported project “Microsoft.Cpp.Default.props” was not found

refer: https://stackoverflow.com/questions/41695251/c-microsoft-cpp-default-props-was-not-found Set VCTargetsPath=D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets  

.NET 暂无评论 阅读(703)

微服务实战(二):使用API Gateway

【编者的话】本系列的第一篇介绍了微服务架构模式。它讨论了采用微服务的优点和缺点,除了一些复杂的微服务,这种模式还是复杂应用的理想选择。 当你决定将应用作为一组微服务时,需要决定应用客户端如何与微服务交互。在单体式程序中,通常只有一组冗余的或者负载均衡的服务提供点。在微服务架构中,每一个微服务暴露一组细粒度的服务提供点。在本篇文章中,我们来看它如何影响客户端到服务端通信,同时提出一种API Gateway的方法。 介绍 假定你正在为在线购物应用开发一个原生手机客户端。你需要实现一个产品最...

.NET, 微服务 暂无评论 阅读(298)

Ocelot+Consul+.netcore高可用&动态伸缩

Ocelot 网关: publicclassStartup { publicStartup(IConfiguration configuration) { Configuration= configuration; } publicIConfigurationConfiguration{ get;} // This method gets called by the runtime. Use this method to add services to the container. publicvoidConfigureServices(IServiceCollection services) {             var config =newConfigurationBuilder() .AddJsonFile("Ocelot.json",false,true) .Build();             services.AddOcelot(config).AddConsul();             servic...

.NET, DevOps, 微服务 暂无评论 阅读(364)