背景
随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。
- 单一应用架构
- 当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。
- 此时,用于简化增删改查工作量的 数据访问框架(ORM) 是关键。
- 早期的JSP,ASP,PHP都是把数据操作写在前端,功能相当简单。
- 垂直应用架构
- 当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,将应用拆成互不相干的几个应用,以提升效率。
- 此时,用于加速前端页面开发的 Web框架(MVC) 是关键。现在很多非互联网公司仍然采用这种架构设计。
- 分布式服务架构
- 当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。
- 此时,用于提高业务复用及整合的 分布式服务框架(RPC) 是关键。
- 流动计算架构
- 当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。
- 此时,用于提高机器利用率的 资源调度和治理中心(SOA) 是关键。
1、Zookeeper安装配置
具体的安装过程可以参见https://blog.csdn.net/gaokao2011/article/details/17020209,本人用的是ubuntu16,Windows下面的安装方式也是大同小异,安装成功后在bin目录下执行sh zkServer.sh,启动成功后可以输入jps命令查看进程,正常启动如下:
其中 QuorumPeerMain是zookeeper进程,如果没有这个进程,可以提升下权限再执行。
2、接口及公共模块
该模块是服务端和消费者端都需要用到的公共模块,包括服务接口以及接口所依赖的实体类,当然其他的公共资源也可以放到这个模块中,公共模块的目录结构如下:
其中User与UserService的内容如下:
package com.jhz.pojo;
import org.springframework.stereotype.Component;
/**
* @author jhz
* @date 18-8-5 下午7:23
*/
@Component
public class User {
private int userId;
private String password;
private String userName;
private String ip;
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
}
package com.jhz.service;
public interface UserService {
public String loginVerify(String username,String password);
}
在实体类这里,使用了@Component注解,只是为了后面扫描的时候省事,但是这种做法不推荐,loginVerify()对登录用户信息进行验证。
3、服务提供者
服务提供者主要负责实现公共模块中的接口,我们在这个模块中继集成mybatis与spring,其目录结构如下:
首先我们介绍该模块的配置文件:
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
<!--6 容器自动扫描IOC组件 -->
<context:component-scan base-package="com.jhz.pojo"></context:component-scan>
<import resource="spring-dao.xml"/>
<import resource="dubbo-provider.xml"/>
</beans>
容器启动时,通过配置context:component-scan去pojo包中扫描实体类,spring-dao将MyBatis的配置交给Spring管理。
spring-dao.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 配置整合mybatis过程 -->
<!-- 1.配置数据库相关参数properties的属性:${url} -->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 2.数据库连接池 -->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method&