一、ip_hash vim /etc/nginx/nginx.conf http { upstream websrvs { server 192.168.1.4:80; server 192.168.1.6:80; server 127.0.0.1:8080 backup; ip_hash; } } ...
分类:
编程语言 时间:
2021-06-10 18:33:41
阅读次数:
0
package com.oracler.demo02; public class Student { public void study(){ System.out.println("学生学习"); } } package com.oracler.demo02; import java.io.Fil ...
分类:
其他好文 时间:
2021-06-10 18:28:27
阅读次数:
0
python3+openpyxl操作excel(xlsx)学习分享,如有问题请大佬指教! 代码如下: 1 import openpyxl 2 3 class DoExcel: 4 """操作excel类:xlsx格式文件 5 file:文件名及路径 6 sheet:表单名""" 7 def __in ...
分类:
编程语言 时间:
2021-06-10 18:24:32
阅读次数:
0
Activity与Fragment之间的传值问题 Activity传值给Fragment 添加Fragment的Activity: https://blog.csdn.net/xingchenhy/article/details/81356400 ...
分类:
其他好文 时间:
2021-06-10 18:18:57
阅读次数:
0
在记录下谷歌浏览器书签的备份和还原,方便以后查找,同时也能帮助到大家 一、书签的位置 ? 一般位于 C:\Users\linhuaming\AppData\Local\Google\Chrome\User Data\Defaultd 目录下的 Bookmarks 文件 。其中的linhuaming ...
分类:
其他好文 时间:
2021-06-10 18:08:37
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-10 18:07:14
阅读次数:
0
settings,xml 阿里云镜像: <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/ ...
分类:
其他好文 时间:
2021-06-10 18:06:24
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-10 18:03:42
阅读次数:
0
创建数据库:mysql> create database test default character set utf8; 查看数据库:mysql> show databases; 查看数据库编码:mysql> select schema_name,default_character_set_nam ...
分类:
数据库 时间:
2021-06-10 18:03:00
阅读次数:
0
一、封装全局异常过滤器实现IExceptionFilter接口 public class GlobalExceptionFilter : IExceptionFilter { public void OnException(ExceptionContext context) { if (contex ...
分类:
Web程序 时间:
2021-06-10 18:02:47
阅读次数:
0