摘要:
1、官网:http://nginx.org/en/ 2、中文文档:http://www.nginx.cn/doc/standard/httpupstream.html 3、代理配置示例: 配置如下: user www-data;worker_processes auto;pid /run/nginx 阅读全文
摘要:
use xfgs;SET SQL_SAFE_UPDATES = 0;SET @num = 0; update xfgs.news_t t set t.orderNum= (@num := @num + 1) 按排序后更新 use xfgs;SET SQL_SAFE_UPDATES = 0;SET @ 阅读全文
摘要:
MySql 执行 DELETE FROM Table 时,报 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column 阅读全文
摘要:
EF Core (EntityFramework Core)是实体关系映射(O/RM)数据库访问框架。这个模式的好处就是让开发人员可以用对象模型来操作数据库,这是一种对开发人员较为友好的方式。 O/RM牛逼在哪? 非对象模型操作数据库,就要直接用sql语言来做大量的CURD操作(Creat 创建;u 阅读全文
摘要:
1、在etc/systemd/system下创建xxx.service文件 [Unit]Description="ubif Service" [Service]Type=simpleGuessMainPID=trueWorkingDirectory=/var/ubif/UbifPublish/ // 阅读全文
摘要:
1、安装Supervisor centos下安装yum install supervisor 2、 systemctl enable supervisord 开机自启 systemctl start supervisord 启动supervisord systemctl status supervi 阅读全文
摘要:
实现 注:需要NuGet引入:Microsoft.Extensions.Options.ConfigurationExtensions ①我们再配置文件appsettings.json中 新增自定义API Json如下: ②然后我们定义一个静态类,再类中申明一个IConfigurationSecti 阅读全文
摘要:
ASP.NET Core中的HttpContext开发,在ASP.NET开发中我们总是会经常用到HttpContext。 那么在ASP.NET Core中要如何使用HttpContext呢,下面就来具体学习ASP.NET Core HttpContext。 注入HttpContextAccessor 阅读全文
摘要:
最近在写.net webapi时发现 HttpContext.Current.Session==null ,导致报错,后来查资料发现webapi中使用session时首先需要开启session功能,解决方案如下: 在Global中重写Init方法来指定会话需要支持的类型 在默认情况下是没有开启的。S 阅读全文