Category: Java Architecture

0

[转]从既有系统到微服务架构

微服务近年来可谓炙手可热,合理的使用微服务架构可以解耦系统、提供更好的软件伸缩性以及提高组织的敏捷性。然而现实中较少有项目一开始就会选择使用微服务架构,绝大多数新项目在最初都会务实地从更容易掌控的单体架构起步构建,如果最终发现单体架构复杂到影响了团队的开发效率及软件的伸缩性等方面时,才会开始考虑逐步将系统往微服务架构做演进。 现实中任何软件架构都是诸多trade-off的结果,想要获得微服务架构所带来的好处也就意味着有能力承担它所带来的的副作用。Martin Fowler就曾在MicroservicePrerequisites一文中指出实施微服务所需要的先决条件,他用“个子是否够高”形象地比喻了微服务所需的技能门槛。 而对于既有系统,还需要一种务实的演进方法和实施策略,使得能够伴随着恰当的代码重构,逐步积累能力和完善基础设施,最终平稳的将其演进到微服务架构。 本文总结了一些从既有系统到微服务演进之路上会遇到的问题和解决策略。文中使用“既有系统”而非“遗留系统”,是因为遗留系统给人一种即将退出生命周期、行将就木的感觉,而我们则希望把精力投入到还有长远商业价值的系统上,通过合理的微服务演进让其具有持续的生命力。

0

Install Jira, Confluence and Bitbucket with Docker Compose

Github Source 1. Create network 1 . Create network for atlassian

2. Install Nginx 1 . Create volume for nginx

You will find nginxdata is located into: /var/lib/docker/volumes/nginxdata/_data /var/lib/docker/volumes/nginxwww/_data Copy opt/nginx/docker-compose.yml to...

0

[总结]如何实现延时触发/定时器

1. 问题 微信公众平台后台有一个功能即定时群发消息,如明晚的20:00群发一条图文消息。那么这种延时触发的逻辑如何实现呢? 滴滴打车订单完成后,如果用户一直不评价,48小时后会将自动评价为5星。

0

Read Properties file in Spring MVC for XML and Java Code

Spring allows us to externalize String literals in its context configuration files into external properties files in order to separate application-specific settings from the framework-specific configuration. You can use the property values in context...

[转]CAP理论以及服务注册与发现 0

[转]CAP理论以及服务注册与发现

[Source] https://cloud.tencent.com/info/7e74c9ea2452227c0ebed5366c55026d.html CAP理论是分布式架构中重要理论 一致性(Consistency) (所有节点在同一时间具有相同的数据) 可用性(Availability) (保证每个请求不管成功或者失败都有响应) 分隔容忍(Partition tolerance) (系统中任意信息的丢失或失败不会影响系统的继续运作)

CORS Flowchart 0

Enabling Cross Origin Requests for a Sprint MVC RESTful Web Service

Skip the definition of CORS, I will test 4 implementations which from Spring official document. 1. Preparation: 1-1. Create a resource controller The service was deployed at domain api.novastartupclassic.com

1-2.