码迷,mamicode.com
首页 >  
搜索关键字:config    ( 25045个结果
运行jar包时指定端口,限制内存,指定配置文件
jar包启动指定端口:java -jar xxx.jar --server.port=9090 jar包启动时指定内存:java -jar -Xmx128m -Xms128m aa.jar 运行时指定配置文件:java -jar aa.jar --Dspring.config.location=ap ...
分类:编程语言   时间:2021-06-29 16:09:37    阅读次数:0
python-configparser模块学习
configparser模块:读取配置文件的包,配置文件由章节(section[sectionName])、键、值组成。(key=value or key: value),其中key=value通过被称为option 1、新建一个config.ini文件 1 [wework] 2 corp_id = ...
分类:编程语言   时间:2021-06-29 15:27:04    阅读次数:0
Centos7.6+Docker+Mysql5.7环境部署
centOS 7.6 + docker +mysql5.7 1.下载Mysql5.7: docker pull mysql:5.7 2.创建挂载目录 : mkdir -p /home/doufu/docker/mysql/config mkdir -p /home/doufu/docker/mysq ...
分类:数据库   时间:2021-06-29 15:22:02    阅读次数:0
关于 Visual studio 卸载DevExpress 控件 ,nuget 残留计算机范围内的程序源删除办法
编译程序的时候,发现报错:本地源"C:\Program Files (x86)\DevExpress 20.1\Components\System\Components\Packages"不存在。 这个是之前试用Devexpress控件时,卸载后的残留, visual studio 界面上无法删除。 ...
分类:其他好文   时间:2021-06-28 21:10:16    阅读次数:0
mysql 启动失败问题
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:数据库   时间:2021-06-28 20:57:43    阅读次数:0
session共享问题
问题:按照正常的程序将session 共享引入工程,但是一直取不到 原因:springboot 的版本不同导致,存session的springboot 用的是springboot1.5.6,而取session的springboot版本是2.1.5。 解决方式1:统一springboot的版本(特别推 ...
分类:其他好文   时间:2021-06-28 20:43:18    阅读次数:0
spring-security安全框架-注意事项——1
##Spring Security注意事项 权限优先级: 在SecurityConfig中configure(HttpSecurity http)方法中,如下代码 http.authorizeRequests() .antMatchers("/admin/**").hasRole("admin") ...
分类:编程语言   时间:2021-06-28 20:23:02    阅读次数:0
OSError: mysql_config not found
解决python 安装 第三方包时报OSError: mysql_config not found的错误 Ubuntu sudo apt-get install libmysqlclient-dev centos7 yum install mysql-devel gcc gcc-devel pyth ...
分类:数据库   时间:2021-06-28 20:20:31    阅读次数:0
redis 持久化
Redis持久化 redis可以将数据写入到磁盘中,在停机或宕机后,再次启动redis时,将磁盘中的备份数据加载到内存中恢复使用。这是redis的持久化。持久化有如下两种机制。 RDB 快照持久化 redis可以将内存中的数据写入磁盘进行持久化。在进行持久化时,redis会创建子进程来执行。 red ...
分类:其他好文   时间:2021-06-28 19:51:24    阅读次数:0
ecshop伪静态规则web.config
<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1"> <match url="^index.html" /> < ...
分类:Web程序   时间:2021-06-28 19:43:32    阅读次数:0
25045条   上一页 1 2 3 4 5 ... 2505 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!