- 博客(11)
- 收藏
- 关注
原创 Quartz.NET 定时任务调度
1.界面预览1.1 前端项目预览 (基于Vue2 +Element UI)1.2 后台接口预览 (基于 .NET6)2.项目介绍在我们日常开发中,常常需要定时调用业务相关的方法完成每日,每月,....等数据统计,常用的方法有定时Windows服务,Hangfire组件,Quartz组件,本文以Quartz组件为例,采用(Vue+ Element UI)+.Net6 前后端分离模式 实...
2022-02-22 09:05:00 102
原创 IIS初始化(预加载),解决第一次访问慢,程序池被回收问题
读在最前面: 1、本文以IIS8,Windows Server 2012R2做为案例 2、IIS8 运行在Windows Server 2012 and Windows 8 版本以上的平台上。 3、IIS中应用程序池和网站是单独存在的,但是网站运行必须建立在对应的应用程序池启动的前提下。 4、默认情况下,应用程序池在不活动情况下(无请求操作),一段时间后,将被IIS自动回收掉...
2021-10-19 14:26:00 381
原创 .netcore在浏览器中读取项目文件夹
Configure 添加代码如下:/配置通过浏览器Url直接访问对应文件夹下的文件(无法访问文件夹) app.UseStaticFiles(new StaticFileOptions() { FileProvider = new PhysicalFileProvider( ...
2021-05-10 21:00:00 134
原创 .netcore swagger 配合 Mini-profiler使用
1、安装相关NuGet包添加包MiniProfiler.AspNetCore.Mvc2、在项目下创建index.html下添加<!--1、版本号要与nuget包一致;2、id不能为空--><script async id="mini-profiler" src="/mini-profiler-resources/includes.min.js?v=4.2....
2021-03-01 22:06:00 131
原创 .netcore 配置swagger
1、创建一个.netcore Mvc项目2、安装相关NuGet包添加包Swashbuckle.AspNetCore3、在Startup.cs 中的ConfigureServices 下添加var basePath = ApplicationEnvironment.ApplicationBasePath; services.AddSwagger...
2021-02-28 23:48:00 48
原创 .netcore 查看 Mini-profiler对应包版本的js代码
1、创建一个.netcore Mvc项目2、安装相关NuGet包添加包MiniProfiler.AspNetCore.Mvc 和 MiniProfiler.EntityFrameworkCore3、在Startup.cs 中的Configure 下添加app.UseMiniProfiler();4、修改_ViewImports.cshtml@us...
2021-02-27 20:22:00 57
原创 .Net.Core 中 LaunchSettings.json 配置详细说明
LaunchSettings.json 配置详细说明{ ////////////////////////////////////////使用IIS Express启动配置//////////////////////////////////////////// "iisSettings": { "windowsAuthentication": false, //是否启用 Win...
2021-02-27 10:26:00 149
原创 Win 10IIS上安装Web Deploy 没有管理服务
在对Win10 IIS 上安装 Web Deploy 时发现怎么弄管理服务都没有,原因是WIN10系统根本不支持该功能,只有在服务器版本上才有,望周知,不要在操作系统上瞎鼓捣,服务器版本才支持。Win10 系统Win Sever 系统...
2020-11-16 15:11:49 1432 4
原创 c# Timer 定时任务
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Timers;namespace QuartzTest{ class Method2 { public b...
2020-03-26 09:40:30 626
原创 献给诸如小白的我,Quartz 小Demo ,C# 打上Quartz包就能运行
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Quartz;using Quartz.Impl;namespace QuartzTest{ class Program ...
2020-03-25 19:22:28 337
原创 PYTHON实现层次分析法(AHP)指标权重的确定
import numpy as npA = np.array([[1, 2, 3], [1/2, 1, 2], [1/3, 1/2, 1]])m=len(A) #获取指标个数n=len(A[0])RI=[0, 0, 0.58, 0.90, 1.12, 1.24, 1.32, 1.41, 1.45, 1.49...
2019-08-05 11:13:39 9523 5
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人