内容简介:[V1.2.3-RELEASE] 2019.09.09 :computer: spring-boot-plusV1.2.3发布,CentOS快速安装环境/构建/部署/启动项目 :star:️ New Features 项目运行环境安装脚本 CentOS快速构建/部署/启动项目脚本 :zap:️ Optimiza...
[V1.2.3-RELEASE] 2019.09.09 ????
spring-boot-plusV1.2.3发布,CentOS快速安装环境/构建/部署/启动项目
⭐️ New Features
- 项目运行环境安装脚本
- CentOS快速构建/部署/启动项目脚本
⚡️ Optimization
- 优化
maven-assembly-plugin项目打包插件
???? Added/Modified
-
Add install-jdk.sh yum安装
jdk8脚本 -
Add install-git.sh yum安装
git脚本 -
Add install-maven.sh yum安装
maven脚本 -
Add install-redis.sh yum安装
redis脚本 -
Add install-mysql.sh yum安装
mysql脚本 -
Add install-all.sh 安装所有环境脚本
-
Add download-install-all.sh 下载并安装所有环境脚本
-
Add deploy.sh 下载项目/构建/部署/启动项目脚本
-
Add
maven-javadoc-pluginjava api docs
???? Documentation
- CentOS Quick Installation Environment / Build / Deploy / Launch Spring-boot-plus Project
- spring-boot-plus java docs
???? Dependency Upgrades
- Upgrade to
springboot2.1.8.RELEASE - Upgrade to
Mybatis3.5.2 - Upgrade to
Mybatis Plus3.2.0 - Upgrade to
Alibaba Druid1.1.20 - Upgrade to
Fastjson1.2.60 - Upgrade to
commons-codec1.13 - Upgrade to
commons-collections4.4 - Upgrade to
hutool-all4.6.4
CentOS Quick Installation Environment / Build / Deploy / Launch Spring-boot-plus Project
1. Download the installation script
Install
jdk,git,maven,redis,mysql
wget -O download-install-all.sh https://raw.githubusercontent.com/geekidea/spring-boot-plus/master/docs/bin/install/download-install-all.sh
2. Run the installation script
sh download-install-all.sh
3. Modify MySQL password
ALTER USER 'root'@'localhost' IDENTIFIED BY 'Springbootplus666!'; exit mysql -uroot -pSpringbootplus666!
4. Import MySQL scripts
create database if not exists spring_boot_plus character set utf8mb4; use spring_boot_plus; source /root/mysql_spring_boot_plus.sql; show tables; exit
5. Download deployment script deploy.sh
wget -O deploy.sh https://raw.githubusercontent.com/geekidea/spring-boot-plus/master/deploy/deploy.sh
6. Execution script
sh deploy.sh
7.Access project
SpringBootAdmin Management page
spring-boot-plus Swagger Document page
http://47.105.159.10:8888/docs
8. View project run log
tail -f -n 1000 /root/spring-boot-plus-server/logs/spring-boot-plus.log
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- ShowDoc 更新:新增一键自动安装/升级脚本
- ShowDoc 更新:新增一键自动安装/升级脚本
- 风铃虫 1.2.0 发布了,新增脚本提取功能
- linux批量新增自动分区挂载大于2T磁盘脚本
- RubyMine 2018.2.3 发布,新增显示运行脚本的功能
- jfinal-admin 2.0 版本合并任务调度并新增 XSS 脚本处理
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
高扩展性网站的50条原则
[美] Martin L. Abbott、[美]Michael T. Fisher / 张欣、杨海玲 / 人民邮电出版社 / 2012-6-3 / 35.00元
《高扩展性网站的50条原则》给出了设计高扩展网站的50条原则,如不要过度设计、设计时就考虑扩展性、把方案简化3倍以上、减少DNS查找、尽可能减少对象等,每个原则都与不同的主题绑定在一起。大部分原则是面向技术的,只有少量原则解决的是与关键习惯和方法有关的问题,当然,每个原则都对构建可扩展的产品至关重要。 主要内容包括: 通过克隆、复制、分离功能和拆分数据集提高网站扩展性; 采用横向......一起来看看 《高扩展性网站的50条原则》 这本书的介绍吧!