logo头像
Snippet 博客主题

后端

spring security全局跨域问题

写过滤器123456789101112131415161718192021import javax.servlet.*;import javax.servlet.http.HttpServletResponse;import java...

解决pycharm无法调用pip安装的包

环境django 2.1.7python 3.7xadminpycharm 2018.3.4 问题在调试xadmin时,已经执行pip3 install future,安装future成功,执行pip3 list也能看到future,...

centos7.4基于bind搭建DNS服务器

查看bind版本dig @localhost version.bind txt chaos 区域 (zone) 数据库文件 存在于/var/named/下 资源记录: Resource Record, 简称rr; 记录类型: ...

Centos7搭建confluence

CentOS 7下yum重装 MySQL 5.7先卸载干净:https://ywnz.com/linuxysjk/2962.html转载自:https://www.jianshu.com/p/8d73382d7d76 注:centos...

游戏服务器学习启动篇

C++:C++ primer 第四版 C++ primer 第五版 高质量编程指南 深度探索C++对象模型 Effective C++ More Effective C++ Essential C++ STL 源码分析 大话设计模式 ...

初识lua-protobuf

资源下载源代码网址 lua-protobuf源代码文档 lua-protobuf源代码下载 Git Clone代码到本地: 复制代码 git clone http://www.github.com/starwing/lua-prot...

Centos7搭建svn服务器

安装SV可参考 启动svnsvnserve -d -r /opt/svn/glory/ 关闭svnps aux | grep svnkill -9 [UID] 客户端连接svnsvn://192.168.1.10/Client ...

CentOS下编译安装shadowsocks-libev

安装 编译环境准备&安装依赖包 yum install -y gcc automake autoconf libtool make build-essential autoconf libtool asciidoc xm...

mac使用ssh连接远程服务器并实现文件上传下砸

使用ssh连接远程主机ssh username@192.168.100.100 其中,username是登录用户名,@后接ip地址,点击确定之后输入密码即连接到远程主机。要查看当前有多少个处于登录状态的用户,可以使用who命令查看。使...