Dubbo +Zookeeper集成SSM框架实现登录功能

本文介绍了如何使用Dubbo结合Zookeeper搭建分布式服务架构,实现在SSM框架下的登录功能。详细步骤包括Zookeeper的安装配置、接口及公共模块的设计、服务提供者和消费者的实现。通过配置Spring、MyBatis和Dubbo,实现了服务的暴露和调用,最终成功完成登录验证。
摘要由CSDN通过智能技术生成

背景

随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。

  • 单一应用架构
    • 当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。
    • 此时,用于简化增删改查工作量的 数据访问框架(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&
评论 32
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值