Settings-Plugins 搜索Editstarters: 安装完插件 重启idea: 查看安装是否成功: 在pom.xml 右键: 选择热部署依赖 点击ok进行自动装配: 热部署依赖环境已经配置成功:…
==============================Spring 容器中 Bean 的名称==============================声明 bean 有两个方式, 一个是 @Bean, 另一个是 @Component 和它的子类 (包括 @Service/@Controller/@Repository/@Configuration), Spring 容器中 bean 名生成规则分两大类, 分别是: 一. @Component 和它的子注解是用来注解 Class 的. 这些…
原文链接:https://blog.csdn.net/qq_38138069/article/details/102528587 IDEA中如何再次调出springboot的依赖窗口,随时可以根据喜好导入和移除插件 那么就需要安装一个IDEA的插件,实现想eclipse中随时勾选取消springboot或者springcloud的插件引用.这个插件就是 Edit Starter 一   安装(其实没必要写,写是因为,我的态度,细节认真) 1  打开IDEA ,点击Settings,进入设置界面…
出现下列错误: error: curl/curl.h: No such file or directory 出错原因:缺少libcurl-dev or libcurl-devel centOS上安装依赖包: yum install libcurl-dev libcurl-devel error: openssl/ssl.h: No such file or directory yum install openssl-devel expat.h:没有那个文件或目录  #include <expat…
Windows Server 2012 R2的Internet Information Services (IIS)网站的模块化设计,可以减少被攻击面并减轻管理负担,让系统管理员更容易架设安全的具备高扩展的网站. 欢迎关注github:https://github.com/saucxs 一.环境设置与安装IIS网站 二.网站的基本设置 三.建立新网站(未完待续) 一.环境设置与安装IIS网站 1.申请DNS域名:向Internet服务提供商(ISP)申请DNS域名,或者在Internet查找提供…
1.首先安装依赖包(依赖包有点多,我们采用yum的方式来安装) yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel 2.将nginx-1.7.6.tar.gz上传到/usr/local/下 tar -zxvf nginx-1.7.6.tar.gz 3.重命名包名称,讲nginx-1.7.6改为nginx mv nginx-1.7.6 nginx 3.编译 cd nginx ./configure make ma…
不多说啥了,生活中都是各种阵痛与惊喜.最近在学习vue框架,刚写完一个小型的后台管理系统(https://github.com/michaelzhengzm/info-manager-systerm_ol),在这里做一个阶段性的小结: 一.构建项目与安装依赖 构建项目采用vue-cli脚手架搭建,npm.cnpm.vue-cli这些知识的基础,网上一大片一大片的,就不过多的描述了.难理解的是里面的配置文件,初学的时候确实费了很多劲,先不用去管太多的配置文件,这些主要是以后上线打包的一些配置问题.…
SpringBoot thymeleaf模板插件安装 SpringBoot thymeleaf模板Html页面没提示 SpringBoot  thymeleaf模板页面没提示 SpringBoot thymeleaf插件下载 ================================ ©Copyright 蕃薯耀 2018年3月27日 http://www.cnblogs.com/fanshuyao/ 附件下载地址见:http://fanshuyao.iteye.com/blog/2414…
在官网中,复制相关链接下载最新版本(建议使用当前发布版本前6个月左右的稳定版本) https://www.percona.com/downloads/XtraBackup/LATEST/ 1.下载和安装 #下载rpm安装包 wget https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.3.3/binary/redhat/6/x86_64/percona-xtrabackup-2.3.3-1.el6.x86_64.rp…
一. vue-cli初始化1. 全局安装 vue-clinpm install --global vue-cli2. 创建一个基于 webpack 模板的新项目vue init webpack my-project3. 安装依赖cd my-projectnpm install (换源安装: npm install --registry https://registry.npm.taobao.org )4.启动: npm run dev 5.打包: npm run build 二. 安装额外的依赖…