java后端架构ppt_java后端系统架构,解决方案合集

缓存框架:

spring cache:http://spring.io/guides/gs/caching/

jetcache :https://github.com/alibaba/jetcache

redis相关 :

redisson :https://github.com/redisson/redisson

jedis :https://github.com/xetorthio/jedis

redisDesktop :

https://github.com/uglide/RedisDesktopManager

cachecloud :https://github.com/sohutv/cachecloud

api文档管理:

easy-mock :https://github.com/easy-mock/easy-mock

ApiManager :https://github.com/EhsanTang/ApiManager

showdoc :https://github.com/star7th/showdoc

配置中心 :

apollo :https://github.com/ctripcorp/apollo

disconf :https://github.com/knightliao/disconf

spring cloud config

注册中心服务:

zookpeer :http://zookeeper.apache.org/

eureka :https://github.com/Netflix/eureka

consul :https://github.com/hashicorp/consul

etcd :https://github.com/coreos/etcd

rpc :

dubbo :https://github.com/apache/incubator-dubbo

motan :https://github.com/weibocom/motan

sofa-rpc :https://github.com/alipay/sofa-rpc

mqrpc :https://gitee.com/kailing/springboot-mqrpc

微服务 :

spring cloud :http://projects.spring.io/spring-cloud/

ServiceComb :http://servicecomb.incubator.apache.org/cn/

api网关 :

zuul :https://github.com/Netflix/zuul

kong :https://github.com/Kong/kong

orange :https://github.com/sumory/orange

分布式事务 :

lcn : https://github.com/codingapi/tx-lcn/

tcc-transaction :https://github.com/changmingxie/tcc-transaction

coolmq :https://github.com/vvsuperman/coolmq

Raincat :https://github.com/yu199195/Raincat

分布式锁 :

klock :https://gitee.com/kekingcn/spring-boot-klock-starter

lock-spring :https://github.com/zouyingchun/lock-spring

分布式任务调度 :

xxl-job : https://github.com/xuxueli/xxl-job

Elastic-job : https://github.com/elasticjob/elastic-job-lite

批处理 :

spring batch :https://spring.io/projects/spring-batch

partitionjob :https://gitee.com/kailing/partitionjob

NewSql :

tidb :https://github.com/pingcap/tidb

oceanbase :https://github.com/alibaba/oceanbase

数据库中间件:

cetus :https://github.com/Lede-Inc/cetus

DBProxy :https://github.com/Meituan-Dianping/DBProxy

mycat :https://github.com/MyCATApache/Mycat-Server

sharding-jdbc :https://github.com/shardingjdbc/sharding-jdbc

dble :https://github.com/actiontech/dble

proxysql :https://github.com/sysown/proxysql

数据库连接池:

druid :https://github.com/alibaba/druid

tomcatjdbc :http://tomcat.apache.org/tomcat-8.0-doc/jdbc-pool.html

HikariCP :https://github.com/brettwooldridge/HikariCP

数据访问 :

jpa : https://github.com/spring-projects/spring-data-jpa

querydsl :https://github.com/querydsl/querydsl

jooq :https://github.com/jOOQ/jOOQ

mango :https://github.com/jfaster/mango

minidao :https://gitee.com/jeecg/minidao

binlog增量日志消费:

keking-binlog :https://gitee.com/kekingcn/keking-binlog-distributor

mysql-binlog-connector-java :https://github.com/shyiko/mysql-binlog-connector-java

canal :https://github.com/alibaba/canal

puma :https://github.com/dianping/puma

open-replicator :https://github.com/whitesock/open-replicator

索引引擎:

elasticsearch :https://github.com/elastic/elasticsearch

solr :http://lucene.apache.org/solr/guide/7_3/

lucene :http://lucene.apache.org/

消息中间件:

RabbitMQ :http://www.rabbitmq.com/getstarted.html

ActiveMQ :https://github.com/apache/activemq

kafka :https://github.com/apache/kafka

rocketmq :https://github.com/apache/rocketmq

zbus :http://zbus.io/

DevOps:

jenkins :https://jenkins.io

hudson :http://www.eclipse.org/hudson

rundeck :https://github.com/rundeck/rundeck

Hygieia :https://github.com/capitalone/Hygieia

应用安全:

openrasp :https://github.com/baidu/openrasp

apm :

skywalking :https://github.com/apache/incubator-skywalking

pinpoint :https://github.com/naver/pinpoint

zipkin :https://github.com/openzipkin/zipkin

cat :https://github.com/dianping/cat

快速开发,微核心:

spring boot :http://projects.spring.io/spring-boot/

jfinal :https://gitee.com/jfinal/jfinal

nutz :https://github.com/nutzam/nutz

日志采集:

logpipe :https://github.com/calvinwilliams/logpipe

logstash :https://github.com/elastic/logstash

爬虫相关:

webmagic :https://gitee.com/flashsword20/webmagic

WebCollector :https://github.com/CrawlScript/WebCollector

jsoup :https://github.com/jhy/jsoup

#参考

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
很抱歉,我无法提供PPT文件,但我可以为您提供Java输入输出的相关信息。 在Java中,可以使用输入输出流(Stream)来读写文件。常见的文件输入输出流有FileInputStream和FileOutputStream,它们分别用于从文件中读取数据和向文件中写入数据。 以下是一个简单的例子,演示如何使用Java读取文件内容并将其输出到控制台: ```java import java.io.*; public class FileInputExample { public static void main(String[] args) { try { File file = new File("example.txt"); FileInputStream fis = new FileInputStream(file); byte[] data = new byte[(int) file.length()]; fis.read(data); fis.close(); String contents = new String(data, "UTF-8"); System.out.println(contents); } catch (IOException e) { e.printStackTrace(); } } } ``` 这个例子中,我们首先创建了一个File对象来表示要读取的文件。然后使用FileInputStream来打开文件并读取其中的数据。我们使用byte数组来保存读取的数据,并将其转换为字符串类型,最后将其输出到控制台。 类似地,我们也可以使用FileOutputStream来向文件中写入数据。以下是一个简单的例子: ```java import java.io.*; public class FileOutputExample { public static void main(String[] args) { try { File file = new File("example.txt"); FileOutputStream fos = new FileOutputStream(file); String contents = "Hello, world!"; byte[] data = contents.getBytes("UTF-8"); fos.write(data); fos.close(); } catch (IOException e) { e.printStackTrace(); } } } ``` 这个例子中,我们首先创建了一个File对象来表示要写入的文件。然后使用FileOutputStream来打开文件并向其中写入数据。我们使用getBytes()方法将字符串转换为字节数组,并将其写入文件中。 希望这些例子可以帮助您了解如何在Java中进行文件输入输出。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值