加载中
first mean

基本配置mongodb 和 Windows 下 Node 环境准备,点击见我博客 1、webstorm create nodejs project. 2、安装模块 #nodemon 修改代码不必手动重启服务器,建议全局安装 -g npm install nodemon...

2017/03/29 18:51
67
MySQL 和 Oracle SQL的一些基本语法和函数

MySQL 和 Oracle SQL的一些基本语法和函数 日期 /*MySQL 获取前面8天的时间点*/ select date_sub(curdate(),interval 8 day); /*Oracle 获取前面8天的时间点*/ select sysdate-8 from dual; ...

2018/03/10 10:19
168
Spring Cloud 服务注册与发现 [ consul ]

客户端 consul-client 添加 spring-cloud-starter-consul-discovery 依赖,pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi...

2017/09/05 16:12
396
Spring Cloud 服务注册与发现 [ eureka ]

用 Spring Cloud 子项目 Spring Cloud Netflix 新建Spring Boot项目,引入 eureka-server, pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4...

2017/09/04 17:04
50
Spring Cloud 监控模块 actuator

添加 actuator 模块依赖 , 最新版的 actuator 需要 redis,所以需要 redis 支持 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actua...

2017/08/26 21:30
307
Spring Boot 配置文件

#随机字符串 com.forwy.value=${random.value} #随机 int com.forwy.int=${random.int} #随机 long com.forwy.long=${random.long} #随机 int (10以内) com.forwy.int=${random.int(10)}...

2017/08/26 21:28
39
使用 intellij idea 构建多模块项目

如无Java文件夹

2017/08/25 11:37
79
IDEA 创建 SpringBoot

创建项目 create New Project-->Spring Initializr-->Next 填写项目信息-->Next SpringBoot版本选择最新版,这里只勾选web的依赖 -->Next-->Finish-->等待依赖加载完毕。 Spring Boot 项目入...

2017/07/30 17:51
120
sql 删除相同记录

表结构及数据: drop table if exists skye_test; create table skye_test( user_id int primary key auto_increment, user_name varchar(20) not null, age int unsigned, gender i...

2017/07/20 09:56
14
jQuery input同步发sims

<!DOCTYPE html> <html> <head>   <title>input 同步</title> </head> <body>   <input type="text" name="texdd" class="example-input">   <input type="text" name="texdd" class="example-i...

2017/07/20 09:56
27

没有更多内容

加载失败,请刷新页面

返回顶部
顶部