ICode9

精准搜索请尝试: 精确搜索
  • 解决跨域问题前端同源政策被限制2021-08-10 16:34:03

    在.net core项目中 在startup类中 ConfigureServices方法 //services是IServiceCollection实例 //尽量放方法的最后 services.AddCors(options => { options.AddPolicy("cors", builder => builder.AllowAnyOrigin()

  • 添加google 三件套(不root 不刷机)2021-08-06 19:01:48

    前言背景 目的:我想下载googleplay海外app 条件:需要梯子 手机型号:华为mate30 鸿蒙系统2.0;红米K30 安卓系统10 MIUI12 引导解决问题的文章链接:https://baijiahao.baidu.com/s?id=1676690451239209129&wfr=spider&for=pc   失败例子 1.我首先试了比较傻瓜式的用“GO谷歌安装器”app,

  • ASP.NET Core Static Files2021-08-06 01:00:46

    以前写的文章和参考 Asp.net core 学习笔记 ( IIS, static file 性能优化 ) 官网   正文 通常 static files 会带上 zip, cache, minify zip 和 cache ASP.NET Core 都有 build-in 的, JS, CSS minify 用 Webpack, HTML 用 WebMarkupMin public static class MiniCompressionC

  • osgEarth加载二维地图2021-08-03 21:32:07

    一、原理 首先设置地图为二维模式 <map name="ArcGIS Online" type="projected" version="2"> 然后在options里面设置投影方式为Equirectangular projection(ERP) <profile>eqc-wgs84</profile>  参考博客  二、地图代码 clear_2D.earth   <!--设置二维模式--&g

  • IdentityServer4(四)2021-08-01 07:31:59

    本文介绍Asp.Net Core MVC项目,连接IdentityServer4项目实现授权登录。 1、新建IdentityServer4项目,选择In-Memory项目模板。       2、将launchSetting.json修改URL,http://localhost:5001        3、修改Startup文件 public class Startup { public IWebHos

  • IdentityServer4(二)2021-08-01 07:31:48

    1、新建空的Identity项目       2、访问localhost:5001/.well-known/openid-configuration      3、访问localhost:5001/connect/token      4、需要用postman 访问localhost:5001/connect/token,要添加参数,不然会报错,错误信息: "error": "invalid_request"或者"error"

  • Asp.Net Core Mvc项目登录IdentityServer4验证无法跳转问题2021-08-01 07:31:17

    Asp.Net Core Mvc项目连接IdentityServer4项目,输入账号密码验证后,无法跳转到MVC项目。    停留在 http://localhost:5001/Account/Login?ReturnUrl 这个界面,不跳转 解决方法:IdentityServer4项目中Startup类中 public void ConfigureServices(IServiceCollection services)

  • SpringBoot时代背景2021-07-31 21:34:13

    微服务 James Lewis Martin Fowler 2014年提出微服务完整概念,https://martinfowler.com/microservices/ In short, the microservice architectural style is an approach to developing a single application as a suite of small services, each running in its own process and

  • 2019下半年2021-07-31 21:30:03

    2019下半年 题目 You are developing a server-side enterprise application .It must support a variety of different clients including desktop browsers, mobile browsers and native mobile applications .The application might also expose an API for 3rd parties t

  • EF Core To MySQL2021-07-29 22:35:02

    1. install packages from nuget     2. crate dbcontext  and model public class IDSContext : DbContext { public IDSContext(DbContextOptions<IDSContext> options) : base(options) { } public DbSet<User> Us

  • 教你一招彻底卸载 MySQL2021-07-28 22:01:02

    文章目录 1、停止 MySQL Server2、卸载 MySQL Server3、删除 MySQL 文件夹4、删除注册表 有时我们在安装 MySQL 可能会出现前期安装时的残留文件未卸载干净导致无法安装的情况,今天来总结下如何彻底卸载 MySQL 。如果此教程对你有帮助,记得 点赞+分享。 关注公众号【C y

  • API限流解决方案2021-07-25 20:00:36

    引言 限流是对外Api服务在使用过程上经常会碰到的需求。 对客户端的访问频率进行限制可以有效防止因为客户端使用脚本或其他破坏性的方式对服务正常运行造成影响的风险。 限流有多种解决方式,最简单的方式莫过于针对Ip进行限制:只允许某一个Ip在规定的时间内访问多次,ip访问记录可以

  • 前端使用axios中post访问.net core3.0后台数据的时候不可以传对象,不可以带请求头?出现400、405、415(已解决)2021-07-22 09:03:14

    后端在startup里边加跨域配置如下: public void ConfigureServices(IServiceCollection services) { //配置跨域处理,允许所有来源 services.AddCors(options => { options.AddPolicy("any", builder =>

  • Ocelot + Consul2021-07-21 21:01:51

    Ocelot allows you to specify a service discovery provider and will use this to find the host and port for the downstream service Ocelot is forwarding a request to. At the moment this is only supported in the GlobalConfiguration section which means the sam

  • 六、k8s入门系列----StatefulSet、Headless Services、LoadBalancer Services2021-07-21 17:34:24

      这节讲下 有状态服务应用 StatefulSet 和另外两种 Service:Headless  和 LoadBalancer 。   应用的状态有如下定义: 无状态应用(Stateless Application)是指应用不会在会话中保存下次会话所需要的客户端数据。每一个会话都像首次执行一样,不会依赖之前的数据进行响应 有状

  • MvcServiceCollectionExtensions MvcServiceCollectionExtensions 类2021-07-19 23:02:42

    public static IMvcBuilder AddMvc(this IServiceCollection services) public static IMvcBuilder AddMvc(this IServiceCollection services, Action<MvcOptions> setupAction) public static IMvcBuilder AddControllers(this IServiceCollection services) publi

  • .NetCore选项数据热更新2021-07-19 22:30:37

    1. 关键类型 IOptionsMonitor<out TOptions>IOptionsSnapshot<out TOptions> 2. 场景 范围作用域类型(AddScoped)使用 IOptionsSnapshot单例服务(AddSingleton)使用 IOptionsMonitor 3. 通过代码更新选项 IPostConfigureOptions<TOptions> 4. IOptionsSnapshot热更新代码 pu

  • .NET Core 事件总线,分布式事务解决方案:CAP2021-07-17 16:35:27

    本文地址:http://www.cnblogs.com/savorboard/p/cap.html 作者博客:Savorboard 背景 相信前面几篇关于微服务的文章也介绍了那么多了,在构建微服务的过程中确实需要这么一个东西,即便不是在构建微服务,那么在构建分布式应用的过程中也会遇到分布式事务的问题,那么 CAP 就是在这样的背景

  • .NetCore Session2021-07-14 14:33:54

    public void ConfigureServices(IServiceCollection services) { services.AddSession(options => { options.IdleTimeout = TimeSpan.FromMinutes(60); } ); services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>(); servi

  • .NET 5.0 Docker 镜像 错误修复方法2021-07-09 13:03:18

    在给eshopondapr 打镜像的时候碰到了3个错误1、restore: Received an unexpected EOF or 0 bytes from the transport stream: https://github.com/NuGet/Home/issues/90202、Notice: NuGet Restore Failures on Linux distributions using NSS or ca-certificates #10712 :https:/

  • 反射反射程序猿的快乐,使用反射实现NetCore3.1依赖注入2021-07-08 19:31:27

    十年河东,十年河西,莫欺少年穷 学无止境,精益求精 开局一张图,内容全靠编 如下图:  上图是我简单构造的一个NetCore的分层项目,解释如下: appModel:实体层 appDataInterface:数据访问接口层 appDataService:数据访问接口层的实现层 appLogicInterface:业务逻辑接口层 appLogicService:业务逻

  • Asp.net core Swashbuckle Swagger 的常用配置2021-07-07 01:04:21

    背景   .net core Swashbuckle Swagger 官方文档:https://github.com/domaindrivendev/Swashbuckle.AspNetCore 我们发现很多小伙伴日常使用 Swashbuckle Swagger 都不看文档的,写下常需用到的配置/写法; 基本使用 Package Manager : Install-Package Swashbuckle.AspNetCore 记

  • 一、.Net Core 依赖注入详解及Autofac使用2021-07-06 19:02:46

    .NET中的依赖注入实际上帮助我们解耦了我们的代码,是控制反转和依赖反转原则的具体实现。 .Net Core的依赖注入的好处: 1. application 更稳定,容易维护和演化; 2. 实现细节的变化,不需要到处更改,在声明的时候进行替换即可; 3. 测试更容易,更好地mock依赖的service等。 4. 高级的模块或者

  • 6.2 gzip:压缩或解压文件2021-07-05 11:04:13

    gzip命令   用于将一个大的文件通过压缩算法(Lempel-Ziv coding(LZ77))变成一个小的文件。gzip命令不能直接压缩目录,因此目录需要先用tar打包成一个文件,然后tar再调用gzip进行压缩。   -d    解开压缩文件 -v    显示指令执行的过程 -l    列出压缩文件的内容信息   -

  • 6.5 scp:远程文件复制2021-07-05 11:02:21

    scp命令   用于在不同的主机之间复制文件,它采用SSH协议来保证复制的安全性。scp命令每次都是全量完整复制,因此效率不高,适合第一次复制时使用,增量复制建议使用rsync命令替代。     scp [option]     [[user@]host1:]file    [[user@]host2:]file2 scp [选项]       

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有