51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#conf
webpack配置:less/sass文件打包和分离、自动处理css前缀、消除未使用的css及完整的webpack.config.js文件
一、less文件打包和分离 1、要使用less,首先使用npm安装less服务;还需要安装Less-loader用来打包使用。npminstallless--save-devnpminstallless-loader--save-dev 2、在module中配置{test:/.less$/,use:[{loader...
代码星球
·
2020-06-27
文件
css
webpack
配置
less
python利用ConfigParser读写配置文件
ConfigParser是Python自带的模块,用来读写配置文件,用法非常简单。 配置文件的格式是:[]包含的叫section, section下有option=value这样的键值配置文件格式如下:[N1]name=Anneage=28[N2]name=Andyage=3...
代码星球
·
2020-06-27
python
利用
ConfigParser
读写
配置文件
Recover lost Confluence password
confluence重置admin密码 复方法:1.运行此sql找到你的管理员帐户:select u.id, u.user_name, u.active from cwd_user u join cwd_m...
代码星球
·
2020-06-27
Recover
lost
Confluence
password
Mac上安装mysql-mython错误:mysql_config not found
1、正确安装MySQL2、配置环境变量exportPATH="$PATH":/usr/local/mysql/bin3、重启终端再进行安装pipinstallmysql-python ...
代码星球
·
2020-06-27
Mac
安装
mysql-mython
错误
mysql
CentOS 7下使用chkconfig添加的服务无法使用/etc/profile里面的环境变量
经过分析/etc/profile为入口的,基本是登录后执行的变量,而使用chkconfig添加的服务多变以守护经常运行,没有登录。CentOS7下使用chkconfig添加的服务无法使用/etc/profile里面的环境变量,通过env输出只有:TERM=xtermSYSTEMCTL_SKIP_REDIRECT=PAT...
代码星球
·
2020-06-27
使用
CentOS
7下
chkconfig
添加
将网桥的配置写进去/etc/sysconfig/network-scripts/ifcfg-xxx
有时候需要使用网桥命令比如brctl设置一些网桥的属性,而这些方式能否同样写进去配置文件使其永久开机生效。答案是不行的,也同样找过Ubuntu的,其实Ubuntu可以实现,参考:http://manpages.ubuntu.com/manpages/cosmic/man5/bridge-utils-interfaces...
代码星球
·
2020-06-27
网桥
配置
进去
etc
sysconfig
WebMvcConfigurerAdapter已经过时的问题解决
spring5开始已经废弃WebMvcConfigurerAdapter,替代的是WebMvcConfigurer接口。 参考:https://blog.csdn.net/lenkvin/article/details/79482205...
代码星球
·
2020-06-27
WebMvcConfigurerAdapter
已经
过时
问题
解决
configure: error: lzo enabled but missing
注意:yum安装的无效,需要手动下载源码安装。wgethttp://www.oberhumer.com/opensource/lzo/download/lzo-2.06.tar.gztarzxvflzo-2.06.tar.gzcdlzo-2.06./configure--prefix=/usr/local/make&a...
代码星球
·
2020-06-27
configure
error
lzo
enabled
but
configure: error: libpam required but missing
安装pam-devel:yuminstall pam-devel...
代码星球
·
2020-06-27
configure
error
libpam
required
but
C++源码里没有./configure文件的问题
使用autoreconf软件来进行生成即可,在命令行输入autoreconf-vi,注意:前提要安装这个软件yuminstallautoconf。...
代码星球
·
2020-06-27
C++
源码
没有
configure
文件
CentOS使用chkconfig增加开机服务提示service xxx does not support chkconfig的问题解决
在shell文件的第二行增加如下内容即可:#chkconfig:23451090#服务必须在运行级2,3,4,5下被启动或关闭,启动的优先级是90,关闭的优先级是10。#description:StartandStopxxx ...
代码星球
·
2020-06-27
chkconfig
CentOS
使用
增加
开机
CentOS 7安装ifconfig
yuminstallnet-tools安装这个工具,或者升级写法,使用ipaddrshow 参考:https://linux.cn/article-3631-1.html...
代码星球
·
2020-06-27
CentOS
安装
ifconfig
SpringBoot中@EnableAutoConfiguration注解用法收集
参考:http://blog.csdn.net/xiaoyu411502/article/details/52770723https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#using-boot-replacing-au...
代码星球
·
2020-06-26
SpringBoot
@EnableAutoConfiguration
注解
用法
收集
Spring Boot使用HandlerInterceptorAdapter和WebMvcConfigurerAdapter实现原始的登录验证
HandlerInterceptorAdapter的介绍:http://www.cnblogs.com/EasonJim/p/7704740.html,相当于一个Filter拦截器,但是这个颗粒度更细,能使用Spring的@Autowired注入。WebMvcConfigurerAdapter的介绍:http://ww...
代码星球
·
2020-06-26
Spring
Boot
使用
HandlerInterceptorAdapter
WebMvcConfigurerAdapter
Spring MVC的WebMvcConfigurerAdapter用法收集(零配置,无XML配置)
原理先不了解,只记录常用方法用法:@EnableWebMvc开启MVC配置,相当于<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:mvc="http:/...
代码星球
·
2020-06-26
配置
Spring
MVC
WebMvcConfigurerAdapter
用法
首页
上一页
...
36
37
38
39
40
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他