Easter79 Easter79
4年前
springboot配置文件、属性,优先级顺序
从application.properties说起1.为什么默认是application.properties?//ConfigFileApplicationListener.javaprivateSet<StringgetSearchNames(){//CONFIG_NAME_
Stella981 Stella981
4年前
Nginx 反向代理Springboot oAuth https配置方案
Nginx配置方案server{listen80;server_namewww.yourname.com;rewrite^(.)$https://${server_name}$1permanent;}server{
Stella981 Stella981
4年前
Flask 【第四篇】使用Flask的扩展实现简单页面登录功能
fromflaskimportFlask,render_template,request,redirect,sessionappFlask(__name__,template_folder'templates')app.secret_key"sdsfdsgdfgdfgfh"@app.befo
Stella981 Stella981
4年前
Git 手册
gitinit                                                 初始化本地git仓库(创建新仓库)gitconfigglobaluser.name"xxx"                      配置用户名gitconfigglobaluser.emai
Wesley13 Wesley13
4年前
NIO如何多线程操作
因为NIO本身是非阻塞的,所以他的消息选择器Selector可以在单线程下连接多台客户端的访问。为了加强NIO的性能,我们加入多线程的操作,当然NIO并不能简单的把Selector.select()放入Executor.execute(Runnable)的run方法中。为完成NIO的多线程,我们应该有一个调度类,一个服务类。调度类的目的是初始化一
Stella981 Stella981
4年前
CSS _text
参考:https://segmentfault.com/q/1010000007136263法一:textalignlast:justify;html<div<pclass"item"<labelfor"name"class"itemLabel"姓名</la
Stella981 Stella981
4年前
Git基本配置
Git配置安装yuminstallgit全局配置设置提交用户名gitconfigglobaluser.name"leoxu"设置提交邮箱gitconfiggl
Stella981 Stella981
4年前
Echarts 数据视图 生成Excel的方法
一、生成Excel,两大方向:1后台生成Excel  查询数据库,使用NOPI生成Excel。2前台js生成Excel三种方式1)jquery.table2excel.js\采用,优势:兼容IE和Chrome。2)handsontable0.32.0问题:不兼容IE。3)手写js有兼容性问题。问题:浏览器兼容
Stella981 Stella981
4年前
Extjs标悬浮在grid单元格上时,显示单元格中内容的值
{xtype:'gridcolumn',text:'名称',width:120,dataIndex:'name',editor:{xtype:'textfield',allowBlank:false,maxLength:20},renderer:function(v,m,r,i){
Stella981 Stella981
4年前
Django之常用配置
<h1在其它文件导入及变量命名注意事项</h1变量命名:必须都大写<preclass'brush:python'fromdjango.confimportsettings</pre<h1静态文件夹配置</h1比如需要引入jquery、bootstrap等文件,需要配置静态文件,步骤如下:步骤一、在<项目名称目录下新建