精选圈子榜单优站
编程综合
编程综合
技术
20关注
编程技术记录、分享 ,记录你的编程生活点点滴滴!

最新文章

Jrebel 激活
Jrebel 激活

这里用的IDE是Idea16.先在File->Settings->Plugins->Browse Repositories,然后搜索JRebel,安装JRebel for Intellij。接着激活j

  • 2017-04-07
  • 3662阅读
【转】IntelliJ IDEA - 注释模板
【转】IntelliJ IDEA - 注释模板

IntelliJ IDEA 注释模板自定义的方式有许多,如Live Templates和File and Code Templates,我比较喜欢File and Code Templates,在新建

  • 2017-04-07
  • 3677阅读
Springboot添加swagger支持
Springboot添加swagger支持

添加maven依赖:<!-- swagger start --><dependency> <groupId>io.springfox</groupId> <artifactId>springfox-s

  • 2017-04-01
  • 5500阅读
idea 常用快捷键 - 收藏
idea 常用快捷键 - 收藏

Ctrl+Shift + Enter,语句完成 “!”,否定完成,输入表达式时按 “!”键 Ctrl+E,最近的文件 Ctrl+Shift+E,最近更改的文件 Shift+Click,可以关闭文件 C

  • 2017-03-27
  • 1449阅读
Ubuntu16.04 安装Nginx
Ubuntu16.04 安装Nginx

安装Nginx依赖库安装gcc g++的依赖库ubuntu平台可以使用如下命令。apt-get install build-essential apt-get install libtoolcente

  • 2017-03-27
  • 2643阅读
SQL not in 中包含null值是个悲剧
SQL not in 中包含null值是个悲剧

如果使用not in 那么子查询中一定不能有null值,如果子查询中有null值那么查询无结果返回。 1.测试 not in 子查询中包含null值 测试表test_t SQL> select * f

  • 2017-03-22
  • 2043阅读
Vuejs环境配置
Vuejs环境配置

安装最新稳定版vue:$ npm install -g vue 全局安装 # 最新稳定 CSP 兼容版本 $ npm install vue@csp开始创建第一个vue项目:# 全局安装 vue-cl

  • 2017-03-21
  • 3615阅读
nodejs版本快速升至最新版
nodejs版本快速升至最新版

只需要两个步骤即可升级:1、首先安装n模块别看它名字很短,用途却很大,可以用短小精悍来形容。n模块是专门用来管理nodejs版本的。这里需要全局安装:sudo npm install -g n2、升级

  • 2017-03-21
  • 2321阅读
Spring Boot允许跨域请求
Spring Boot允许跨域请求

Springboot默认是禁止跨域请求的。可以添加配置类打开:package com.nemo.common.configs; import org.springframework.context.a

  • 2017-03-20
  • 4510阅读
Springboot | Failed to execute goal org.springframework.boot:spring-boot-maven-plugin
Springboot | Failed to execute goal org.springframework.boot:spring-boot-maven-plugin

在整理springboot的基本架构时,某一个层在build的时候发生了如下异常:[INFO] Scanning for projects... [INFO] [INFO] -------------

  • 2017-03-20
  • 2765阅读