Wesley13 Wesley13
3年前
SSH整合步骤详解(图例)
!SSH整合步骤详解(图例)(http://static.oschina.net/uploads/img/201505/31142736_Nel7.jpg"SSH整合步骤详解(图例)")(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fphoto.blog.sina.com.cn%2
LeCun LeCun
4年前
网络解析(一):LeNet-5详解
网络解析(一):LeNet5详解摘要LeNet5出自论文GradientBasedLearningAppliedtoDocumentRecognition,是一种用于手写体字符识别的非常高效的卷积神经网络。网络解析(一):LeNet5详解(https://imghelloworld
Stella981 Stella981
3年前
Python爬虫—破解JS加密的Cookie
前言  在GitHub上维护了一个代理池(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fjhao104%2Fproxy_pool)的项目,代理来源是抓取一些免费的代理发布网站。上午有个小哥告诉我说有个代理抓取接口不能用了,返回状态521。抱着帮人解决
Stella981 Stella981
3年前
Spring Security使用详解9(密码加密配置)
在之前的文章中密码都是使用明文的方式进行存储,但这样会有很大的安全隐患。所以正常做系统时,密码都要加密处理。而在SpringBoot中配置密码加密非常容易,下面通过样例进行演示。九、密码加密配置1、样例代码(1)要配置密码加密只需要修改两个地方。首先要修改HttpSecurity配置中的PasswordEncoder
Stella981 Stella981
3年前
Nginx 模块分类
L:34!(https://oscimg.oschina.net/oscnet/3f218ca9379733d571a853b919759402668.png) 我们进入Nginx安装目录来查看上述模块的位置在src目录下每个模块对应的文件夹如下 /usr/local/nginx/nginx1.14.2/srcro
Stella981 Stella981
3年前
Redis sentinel.conf配置文件详解
redissentinel.conf配置项说明如下:1.port26379sentinel监听端口,默认是26379,可以修改。2.sentinelmonitor<mastername<ip<redisport<quorum告诉sentinel去监听地址为ip:
Wesley13 Wesley13
3年前
JDK动态代理的简单实现
1\.先理一下动态代理实现的思路:    实现功能:自己定义一个类Proxy,通过Proxy的静态方法newProxyInstance(Class<Tintface,InvocationHandlerh)返回代理对象, intface:被代理类的接口对象, h:InvocationHandler的实例对象    1).声明一段动
Stella981 Stella981
3年前
Spring Security使用详解8(配置多个HttpSecurity)
在之前的文章中我们都只配置一个HttpSecurity,如果业务比较复杂,我们也可以配置多个HttpSecurity,实现对WebSecurityConfigurerAdapter的多次扩展。八、配置多个HttpSecurity1、样例代码(1)配置多个HttpSecurity时,MultiHttpSecurity
Easter79 Easter79
3年前
Tomcat安装、配置、优化及负载均衡详解
<divid"cnblogs\_post\_body"class"blogpostbody"<p<strong原文地址:https://www.cnblogs.com/rocomp/p/4802396.html</strong</p<p<strong一、常见JavaWeb服务器</strong</p<div<strong&
Stella981 Stella981
3年前
Spring Security使用详解7(注销登录配置)
默认情况下,SpringSecurity提供了注销接口是/logout,访问这个接口即可注销当前登录用户并且自动跳转到登录页。如果需要修改注销接口,或者想在注销时做一些业务逻辑,或者注销后不是跳转到登录页而是返回一段JSON提示,只需在一些简单配置即可。七、注销登录配置1、样例代码首先修改SpringSecurit