JAVA 网站后台开发技术栈

本文汇总了微服务架构SpringCloud、后端开发框架SpringBoot、数据库(MySql、Redis)、组件(mybatis、Apollo)及其它常用技术如Jenkins的教程与资源链接,为开发者提供一站式学习资料。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.微服务架构 springcloud

	[Spring Cloud 中文](https://www.springcloud.cc/)
	[springcloud 全家桶](https://spring.io/projects/spring-cloud)
	[spring security](https://docs.spring.io/spring-security/site/docs/current/reference/html5/#preface)

2.后台开发框架 springboot

	[springboot 教程](https://docs.spring.io/spring-boot/docs/2.0.0.M3/reference/htmlsingle/)
	[springboot 快速构建](https://start.spring.io/)
	[application.properties 配置](https://docs.spring.io/spring-boot/docs/2.0.0.M3/reference/htmlsingle/#common-application-properties-security)
	[springboot demo](https://github.com/spring-projects/spring-boot/tree/v2.0.0.M3/spring-boot-samples/)

3.数据库

	[MySql 教程](https://www.runoob.com/mysql/mysql-tutorial.html)
	[Redis 教程](https://www.runoob.com/redis/redis-tutorial.html)

4.组件

	mybatis
	[mybatis 介绍/教程](https://mybatis.org/mybatis-3/zh/index.html)
	
	分布式配置中心apollo
	[分布式配置中心--阿波罗](https://github.com/ctripcorp/apollo/wiki/Apollo%E9%85%8D%E7%BD%AE%E4%B8%AD%E5%BF%83%E4%BB%8B%E7%BB%8D)
	
	其他常用组件: 
			JSONObject  com.alibaba:fastjson
			分页排序查询  com.github.pagehelper

5.其他

	[jenkins](https://www.jenkins.io/zh/doc/)

6.笔记
#正则匹配IPv4

String regex = "((25[0-5])|(2[0-4]\\d)|(1\\d{2})|(([1-9]\\d?)))\\." +
                            "((25[0-5])|(2[0-4]\\d)|(1\\d{2})|(([1-9]\\d?)))\\."+
                            "((25[0-5])|(2[0-4]\\d)|(1\\d{2})|(([1-9]\\d?)))\\."+
                            "((25[0-5])|(2[0-4]\\d)|(1\\d{2})|(([1-9]\\d?)))";
Pattern pattern = Pattern.compile(regex);
 Matcher matcher = pattern.matcher(serverName);
 if(!matcher.find()){
     continue;
 }
 String siteName = serverName.replace(matcher.group(0), "").replace("-", "");

#字典键值遍历

server.forEach((k2,v2) -> {
    if(k2.equals("deviceCount")){
        serverCountSet.set(cIndex, serverCountSet.get(cIndex) + Integer.valueOf(v2.toString()));
    }
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值