码迷,mamicode.com
首页 >  
搜索关键字:start    ( 26183个结果
windows下安装redis并设置自启动
阅读原文 一、下载windows版本的Redis 官网下载地址:http://redis.io/download github下载地址:https://github.com/MSOpenTech/redis/tags 二、安装Redis 1.这里下载的是Redis-x64-3.2.100版本,我的电 ...
分类:Windows程序   时间:2021-06-06 18:43:07    阅读次数:0
springboot集成swagger
集成 Swagger 管理 API 文档 1)项目中集成 Swagger 集成 Swagger 我们使用封装好了的 Starter 包,代码如下所示。 <!-- Swagger --><dependency> <groupId>com.spring4all</groupId> <artifactId ...
分类:编程语言   时间:2021-06-05 18:35:34    阅读次数:0
C# WinForm TextBox 只能输入数字【正则替换】
private void txtMaxCount_TextChanged(object sender, EventArgs e) { //替换非数字 this.txtMaxCount.Text = Regex.Replace(this.txtMaxCount.Text, @"[^\d]*", "") ...
分类:Windows程序   时间:2021-06-05 18:15:46    阅读次数:0
推荐项目
zookeeper3.4.10 kafka 2.11 redis-4.0.2 ps -ef |grep redis 里面有一个 说明没事 mongodb 3.4.3 27017 他的表 叫collection scala 2.11.12 快捷键 1.如果包没有显示出来,需要自行添加, ctrl+al ...
分类:其他好文   时间:2021-06-05 18:14:39    阅读次数:0
start from the beginning-JAVA(API、Scanner类、Random类、ArrayList类)
##一、API ###概述 ##二、Scanner类 ###1、什么是Scanner类 ###2、Scanner使用步骤 ###3、匿名对象 ####概念 ####应用场景 ##三、Random类 ###1、什么是Random类 ###2、Random类使用步骤 ####注意 nexInt(n)范围 ...
分类:编程语言   时间:2021-06-05 18:13:15    阅读次数:0
mindspore\lite\examples\quick_start_cpp/main部分方法注释
mindspore\lite\examples\quick_start_cpp/main部分方法注释 一、代码路径 链接在这 https://forgeplus.trustie.net/projects/Huawei_Technology/mindspore/tree/master/mindspor ...
分类:其他好文   时间:2021-06-05 17:43:32    阅读次数:0
批处理文件备忘
在一个批处理文件中调用其他批处理或可执行文件,有两种方式。 第一种 使用call 1.bat需要调用2.bat和3.bat @echo off call 2.bat call 3.bat 这种写法在实际执行时,首先运行2.bat,执行完后才会继续执行3.bat 第二种 使用start 1.bat需要 ...
分类:其他好文   时间:2021-06-05 17:37:23    阅读次数:0
11-Mybatis中使用PageHelper分页插件
在SSM框架,而非maven项目中,使用分页插件PageHelper的时候,需要依赖两个jar包: PageHelper.jar Jsqlparser.jar 在maven项目中只需要PageHelper.jar 一、在配置文件中加入PageHelper插件 ? 在applicationContex ...
分类:其他好文   时间:2021-06-05 17:33:32    阅读次数:0
linux防火墙使用以及配置
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:系统相关   时间:2021-06-04 19:47:34    阅读次数:0
IDEA启动报错
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:其他好文   时间:2021-06-04 19:02:07    阅读次数:0
26183条   上一页 1 ... 8 9 10 11 12 ... 2619 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!