会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
小学员G
博客园
首页
新随笔
联系
订阅
管理
2020年11月27日
nginx 反向代理https
摘要: 1 server{ 2 listen 80; 3 location /xxx{ 4 proxy_pass https://xxxx?$args 5 proxy_set_header Host $http_host; 6 proxy_set_header X-Real-IP $remote_addr;
阅读全文
posted @ 2020-11-27 10:35 小学员G
阅读(297)
评论(0)
推荐(0)
编辑
2020年3月30日
Thymeleaf热部署 实现更改页面不重启
摘要: 1、修改pom文件,添加依赖 1 <dependency> 2 <groupId>org.springframework.boot</groupId> 3 <artifactId>spring-boot-starter-thymeleaf</artifactId> 4 </dependency> 5
阅读全文
posted @ 2020-03-30 10:46 小学员G
阅读(892)
评论(0)
推荐(0)
编辑
2020年3月29日
springBoot + mybatys 数据源动态切换
摘要: https://blog.csdn.net/rui15111/article/details/93995571 https://blog.csdn.net/soberchina/article/details/72953996
阅读全文
posted @ 2020-03-29 18:04 小学员G
阅读(152)
评论(0)
推荐(0)
编辑
2020年3月12日
IDEA 常用快捷键
摘要: Ctrl+E 最近的文件Ctrl+Alt+Enter 在当前行前插入一行Shift+Enter 在当前行下面增加一行Ctrl+Alt+O 自动删除未使用的importCtrl+Shift+F12 最大化/还原窗口Alt+鼠标选择 列选择模式,按列选择Ctrl+N 搜索class类文件Ctrl+Shi
阅读全文
posted @ 2020-03-12 10:31 小学员G
阅读(8846)
评论(0)
推荐(2)
编辑
2019年8月3日
Spring Session -redis
摘要: SpringBoot之使用Spring Session集群-redis 用nginx做负载的时候,会出现每一次http请求都会分配到不同的tomcat上,这样用session存储用户数据就会有问题。因为tomcat集群之间没有实现session共享。 spring-session跟redis很好的帮
阅读全文
posted @ 2019-08-03 16:42 小学员G
阅读(275)
评论(0)
推荐(0)
编辑
2018年1月30日
PHP之curl实现http与https请求的(转)
摘要: http get请求: http post请求: https get请求: http get请求:
阅读全文
posted @ 2018-01-30 19:49 小学员G
阅读(444)
评论(0)
推荐(0)
编辑
2017年9月22日
Nicescroll滚动条插件的用法(转)
摘要: Nicescroll滚动条插件是一个非常强大的基于JQUERY的滚动条插件,不需要增加额外的css,几乎全浏览器兼容。ie6+,实现只需要一段代码,侵入性非常小,样式可完全自定义,支持触摸事件,可在触摸屏上使用。 官网地址:http://www.areaaperta.com/nicescroll/
阅读全文
posted @ 2017-09-22 10:29 小学员G
阅读(348)
评论(0)
推荐(0)
编辑
2017年7月27日
php 面向对象方法实例
摘要: http://blog.csdn.net/hj960511/article/details/51479755 一、PHP面向对象的简单列子 以人为列子: <?php header("Content-type: text/html; charset=utf-8"); class person{ //下
阅读全文
posted @ 2017-07-27 08:58 小学员G
阅读(254)
评论(0)
推荐(0)
编辑
2017年7月14日
jQuery的三种$()
摘要: 1、$()可以是$(expresion),即css选择器、Xpath或html元素,也就是通过上述表达式来匹配目标元素。 比如:$("a")构造的这个对象,是用CSS选择器构建了一个jQuery对象——它选择了所有的<a/>这个标签。如: $("a").click(function(){...})
阅读全文
posted @ 2017-07-14 13:52 小学员G
阅读(882)
评论(0)
推荐(0)
编辑
2017年6月30日
Css display值与解释
摘要: Css display值与解释-(详细可见CSS手册的CSS display手册)参数:block :块对象的默认值。用该值为对象之后添加新行none :隐藏对象。与visibility属性的hidden值不同,其不为被隐藏的对象保留其物理空间inline :内联对象的默认值。用该值将从对象中删除行
阅读全文
posted @ 2017-06-30 16:43 小学员G
阅读(234)
评论(0)
推荐(0)
编辑
下一页