ini文件读写 添加帮组类 using System; using System.Text; using System.IO; using System.Runtime.InteropServices; namespace IniHelperDemo { public class IniConfig ...
分类:
其他好文 时间:
2021-04-12 12:32:03
阅读次数:
0
前言 在前几篇的学习中,我们定义的四类 Client 都是存储在内存中的,通过 AddInMemoryClients(Startup.GetClients()) 的方式注入到 IDS4的服务中。本篇我们学习如何使用数据库或其他持久化方法存储和读取 Client 。 自定义 ClientStore 在 ...
分类:
其他好文 时间:
2021-04-10 13:31:06
阅读次数:
0
前言 在前几篇的学习中,我们定义的 ApiResource、ApiScope、IdentityResource 都是存储在内存中的,通过 AddInMemoryApiScopes(Startup.GetApiScopes())、AddInMemoryIdentityResources(Startup ...
分类:
其他好文 时间:
2021-04-10 13:30:48
阅读次数:
0
描述 当前后端 ip 不同时进行请求发送就会存在跨域问题而无法发送请求,前端和后端都有解决方案,但使用 Vue 去解决跨域要进行代理配置是比较麻烦的,所以记录一下使用 .NET Core 3.1 进行跨域配置,不支持低于 3.1 以下的版本 方法 添加策略打开项目的 Startup.cs 文件,在 ...
分类:
其他好文 时间:
2021-04-10 13:10:42
阅读次数:
0
添加依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.5</version> </dependency> <dependency> <g ...
分类:
编程语言 时间:
2021-04-07 11:07:19
阅读次数:
0
切换到数据库用户Oracle su oracle lsnrctl start 启动数据库监听端口 登录SQLplus sqlplus /nolog conn / as sysdba 链接数据库 startup 启动 ...
分类:
数据库 时间:
2021-04-07 10:57:03
阅读次数:
0
中间件的多种引用方式 1. 中间件的内容可以独立开,放入一个独立的类中去。类的结构必须如下定义: 要求:构造函数带有RequestDelegate参数类型。为了得到下一个中间件; 必须包含 async Task Invoke方法,方法参数为HttpContext 2. 在Startup 中把这些中间 ...
分类:
Web程序 时间:
2021-03-30 13:22:09
阅读次数:
0
ps -ef|grep apache -tomcat 查看进程 kill -9 杀死进程 ls 看命令 ./ startup.sh 启动 cd ../logs 查log tail -f catalina.out 看log chmod -R 777 * chmod 777 * 赋权限 unzip 文件 ...
分类:
系统相关 时间:
2021-03-26 15:32:48
阅读次数:
0
方法一、配置shell脚本,使用/etc/rc.local 跟随系统自启动 # cat /home/oracle/script/start.sh lsnrctl start<<EOF EOF sqlplus / as sysdba <<EOF startup alter system registe ...
分类:
数据库 时间:
2021-03-26 15:17:47
阅读次数:
0
从tomcat官网上下载了apache-tomcat-5.5.36.zip,在window xp系统里面解压以后,直接放在了linux服务器上。 进入tomcat/bin目录,执行启动的时候出现如下错误: [root@test bin]# ./startup.shCannot find ./cata ...
分类:
其他好文 时间:
2021-03-17 14:39:49
阅读次数:
0