• 首页
  • 前端
    • vue
    • react
  • 后端
    • JAVA
    • Spring Boot
    • MySql
  • 架构
    • Linux
    • nginx
    • tomcat
  • 杂谈
搜索
  • 首页
  • 前端
    • vue
    • react
  • 后端
    • JAVA
    • Spring Boot
    • MySql
  • 架构
    • Linux
    • nginx
    • tomcat
  • 杂谈
  • 首页
  • 前端
    • vue
    • react
  • 后端
    • JAVA
    • Spring Boot
    • MySql
  • 架构
    • Linux
    • nginx
    • tomcat
  • 杂谈
搜索
  • 首页
  • 前端
    • vue
    • react
  • 后端
    • JAVA
    • Spring Boot
    • MySql
  • 架构
    • Linux
    • nginx
    • tomcat
  • 杂谈
Eric

Eric


专治各种水土不服

Read Article
nginx
nginx

centos下安装Tengine or Nginx

使用以下的指令进行源码安装 # 下载 wget http://tengine.taobao.org/download/tengine-2.3.3.tar.gz # 解压 tar -zxvf tengine-2.3.3.tar.gz cd tengine-2.3.3 使用yum安装nginx的依赖环境 # yum 升级 yum update -y # yum 安装依赖 …

  • Eric
  • 2021-12-20
  • 0
  • Read More...
Read Article
Android
Android

Android搭建opencv环境(超详细)

OpenCV是一个基于BSD许可(开源)发行的跨平台计算机视觉库,可以运行在Linux、Windows、Android和Mac OS操作系统上。它轻量级而且高效——由一系列 C 函数和少量 C++ 类构成,同时提供了Python、Ruby、MATLAB等语言的接口,实现了图像处理和计算…

  • Eric
  • 2020-11-05
  • 0
  • Read More...
Read Article
Linux
Linux

electerm,免费开源的SSH桌面终端,像xshell、termius一样好用

之前我一直在用的SSH桌面终端是terminus,体验还不错。昨天重装了windows以后,发现之前存的地址全部没有了。我明明文档和程序全部不在C盘啊,黑人问号???最后再重新安装发现,termius根本没有让选择安装位置的,直接默认安装到了C盘,于是重…

  • Eric
  • 2020-03-18
  • 0
  • Read More...
Read Article
Linux
Linux

Linux远程挂载网络硬盘详解 (NFS共享)

前言 在Linux或Windows乃至其他的系统,我们经常会需要进行磁盘的挂载。通常从挂载的方式的上分为本地挂载和远程挂载。Linux的本地挂载就不介绍了,这篇文章介绍的是远程挂载网络磁盘。 远程挂载网络磁盘 实际上,这个操作与使用nfs共享一个文件…

  • Eric
  • 2020-03-16
  • 0
  • Read More...
Read Article
MySql
MySql

永久设置group_concat_max_len(MySQL配置),MYSQL中group_concat有长度限制!默认1024

查找当前数据库长度 show variables like 'group_concat_max_len' ; 设置当前session的group_concat长度,其他session连接不受影响 SET SESSION group_concat_max_len = 10240; 设置全局group_concat长度 SET GLOBAL group_concat_max_len = 10240…

  • Eric
  • 2020-02-18
  • 0
  • Read More...
Read Article
Spring Boot
Spring Boot

idea使用spring boot 热更新、热加载

每修改一下代码再去run一次实在是很麻烦啦,接触springboot不久,但既然用这个框架的,它所包含的特性什么的还是要充分利用,不能浪费呀!springboot的热部署网上有太多的教案,在此呢,也只是真实记录一下自己在实际操作过程中的方法步骤。 1、po…

  • Eric
  • 2018-09-15
  • 0
  • Read More...
Read Article
Spring Boot
Spring Boot

Spring Boot 非web应用程序实例(控制台应用程序)

在Spring Boot中,要创建一个非Web应用程序,实现CommandLineRunner并覆盖run()方法,例如: import org.springframework.boot.CommandLineRunner; @SpringBootApplication public class SpringBootConsoleApplication implements CommandL…

  • Eric
  • 2018-09-07
  • 0
  • Read More...
Read Article
杂谈
杂谈

程序员必须知道的几个Git代码托管平台

说到Git代码托管平台,首先推荐的是GitHub,好多好的开源项目都来自GitHub,但是GitHub只能新建公开的Git仓库,私有 仓库要收费,如果你做的是一个开源项目,可以首选GitHub。下面推荐几个比较好的Git代码托管平台,这里我不做过多的说明和评价,…

  • Eric
  • 2018-08-31
  • 0
  • Read More...
Read Article
Spring Boot
Spring Boot

Springboot中logback配置日志按天分割

springboot默认的日志文件是不会自动按天分割的,所以生产环境的日志文件越来越大,很不利于拍错。查了很多资料最终配置如下,可以完美按天按错误等级分割日志文件,配置如下。 首先不同环境下的logback配置肯定是不一样的,所以我的解决办法是: …

  • Eric
  • 2018-07-04
  • 0
  • Read More...
Read Article
Spring Boot
Spring Boot

Springboot Date类型日期参数报错的解决办法

在使用springboot 即 springMVC中,绑定接口传递时间字符串数据给Date类型报如下错误: org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver -Failed to bind request element: org.springframework.web.method.anno…

  • Eric
  • 2018-07-04
  • 0
  • Read More...

站内搜索


分类目录


  • 前端 7
    • vue 1
  • 后端 10
    • JAVA 9
      • Spring Boot 5
    • MySql 1
  • 未分类 1
  • 杂谈 3
  • 架构 6
    • Linux 2
    • nginx 3
    • tomcat 1
  • 热门推荐 11
  • 移动端 1
    • Android 1

最新文章


centos下安装Tengine or Nginx

Eric / 2021-12-20
AndroidAndroid搭建opencv环境(超详细)

Android搭建opencv环境(超详细)

Eric / 2020-11-05
Linuxelecterm,免费开源的SSH桌面终端,像xshell、termius一样好用

electerm,免费开源的SSH桌面终端,像xshell、termius一样好用

Eric / 2020-03-18

Linux远程挂载网络硬盘详解 (NFS共享)

Eric / 2020-03-16

永久设置group_concat_max_len(MySQL配置),MYSQL中group_concat有长度限制!默认1024

Eric / 2020-02-18

热门标签


远程挂载网络硬盘前端verynginxtomcatquillnginxNFS共享mysqlMarkdownlinuxjavascriptIDEAhtml5group_concat_max_len
  • 1
  • 2
  • 3
EricGG个人博客

JUST DO IT!!!

随机文章


前端
3月份GitHub上最热门的JavaScript项目
Posted by Eric on 2018-04-18
Linux
electerm,免费开源的SSH桌面终端,像xshell、termius一样好用
Posted by Eric on 2020-03-18
JAVA
自己搭建IntelliJ IDEA授权服务器
Posted by Eric on 2018-05-10

热门标签


远程挂载网络硬盘前端verynginxtomcatquillnginxNFS共享mysqlMarkdownlinuxjavascriptIDEAhtml5group_concat_max_len

Copyright © EricGG个人博客 - All rights reserved .豫ICP备17008454号-3