Service设计模式

\*\*`面向用户操作`\*\*的功能代码封装,Service业务层封装了用户的操作功能,一个用户操作,对应Service的一个方法。

(一)**场景**

![](image/image_5_2cr5ldrq.png)

(二)Service编程

**Service编码规范**

  • ① 一个业务模块(相关的功能属于一个模块,比如管理相关功能、账户相关操作等)的方法放在一个Service类中,命名:**`XxxxService`**,保持望文生义。

  • ② 用户的一个操作功能对应service一个方法,例如:`开卡`、`编辑卡号`、`注销卡号`、`转账`,对应方法 `openCard`、`editCard`、`removeCard`、`transfer`。

  • ③ Service的java类,通常放在`service`包下或者biz包下。

**示例代码:**

  • 转账功能:

  • 实体类:

~~~java

  package com.xx.entity;
    
    import java.io.Serializable;
    //映射t_account表
    public class Account implements Serializable {
        private Integer accountId;
        private String username;
        private String password;
        private Double balance;
        //省略getter、setter、构造
    }
    ~~~
  • DAO:

    java 复制代码
        package com.xx.dao;
        
        import com.xx.entity.Account;
        
        public interface AccountDao {
            /**
             * 根据账户名查询指定信息
             * @param username 被查询的账户名
             * @return 对应的对象信息
             */
            Account selectAccountByUsername(String username);
        
            /**
             * 根据账户名修改余额
             * @param username 被修改的账户名
             * @param newBalance 修改后的余额
             * @return 受影响的行数
             */
            int updateAccountByUsername(String username, double newBalance);
        }
        
        ~~~

~~~java

 package com.xx.dao.impl;
    
    import com.xx.dao.AccountDao;
    import com.xx.entity.Account;
    import com.xx.util.JDBCUtils;
    import org.springframework.jdbc.core.BeanPropertyRowMapper;
    import org.springframework.jdbc.core.JdbcTemplate;
    
    import java.util.List;
    
    public class AccountDaoImpl implements AccountDao {
        private JdbcTemplate jdbcTemplate = JDBCUtils.getJDBCTemplate();
    
        @Override
        public Account selectAccountByUsername(String username) {
            String sql = "select * from t_account where username=?";
            List<Account> list = jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(Account.class), username);
            return list.isEmpty() ? null : list.get(0);
        }
    
        @Override
        public int updateAccountByUsername(String username, double newBalance) {
            String sql = "update t_account set balance=? where username=?";
            return jdbcTemplate.update(sql, newBalance, username);
        }
    }
    
    ~~~
  • Service:

    ~~~java
      package com.xx.service;
      
      public interface AccountService {
          /**
           * 转账功能
           * @param fromName 用户输入的转出人姓名
           * @param toName 用户输入的转入人姓名
           * @param money 转账金额
           * @return转账是否成功的结果
           */
          boolean transfer(String fromName,String toName,double money);
      }
      ~~~
    

~~~java

  package com.xx.service.impl;
    
    import com.xx.dao.AccountDao;
    import com.xx.dao.impl.AccountDaoImpl;
    import com.xx.entity.Account;
    import com.xx.service.AccountService;
    
    public class AccountServiceImpl implements AccountService {
        private AccountDao ad = new AccountDaoImpl();
        @Override
        public boolean transfer(String fromName, String toName, double money) {
            //判断转出人是否存在
            Account from = ad.selectAccountByUsername(fromName);
            if (from == null) {
                throw new RuntimeException("转出人不存在!");
            }
            //判断余额是否充足
            if (from.getBalance() < money) {
                throw new RuntimeException("余额不足!");
            }
            //判断转入人是否存在
            Account to = ad.selectAccountByUsername(toName);
            if (to == null) {
                throw new RuntimeException("转入人不存在!");
            }
            //执行转账
            int n = ad.updateAccountByUsername(fromName, from.getBalance() - money);
            n += ad.updateAccountByUsername(toName, to.getBalance() + money);
            if (n == 2) {
                return true;
            }
    
            return false;
    
    
    
        }
    }
    ~~~
  • 视图层:

    ~~~java
      package com.xx.view;
      
      import com.xx.service.AccountService;
      import com.xx.service.impl.AccountServiceImpl;
      
      import java.util.Scanner;
      
      public class TransferView {
          public static void main(String[] args) {
              Scanner sc = new Scanner(System.in);
              System.out.println("请输入转出人的账户名:");
              String fromName = sc.next();
              System.out.println("请输入转账金额:");
              double money = sc.nextDouble();
              System.out.println("请输入转入人的账户名:");
              String toName = sc.next();
      
              //调用转账功能
              AccountService as = new AccountServiceImpl();
      
              try {
                  if (as.transfer(fromName, toName, money)) {
                      System.out.println("转账成功!");
                  } else {
                      System.out.println("转账失败");
                  }
              } catch (Exception e) {
                  System.out.println("转账失败!详细信息为:"+e.getMessage());
              }
          }
      }
      
      ~~~
    
相关推荐
TANGLONG2222 小时前
【初阶数据结构与算法】排序算法总结篇(每个小节后面有源码)(直接插入、希尔、选择、堆、冒泡、快速、归并、计数以及非递归快速、归并排序)
java·c语言·数据结构·c++·算法·面试·排序算法
我荔枝呢!2 小时前
集合(List、Set、Map)ArrayList、LinkedList、Vector、HashSet、LinkedHashSet、HashMap
java·开发语言
zhxueverme2 小时前
JAVA学习笔记_Redis进阶
java·笔记·学习
tianyueWindbg4 小时前
IDEA错题集
java·ide·intellij-idea
全栈老实人_5 小时前
旅游管理系统|Java|SSM|VUE| 前后端分离
java·开发语言·tomcat·maven
CoderLi_6 小时前
Java 类加载机制
java·jvm·类加载
问道飞鱼6 小时前
【Springboot知识】Springboot基础-过滤器与拦截器开发
java·spring boot·后端·过滤器·拦截器
拉一次撑死狗6 小时前
SpringCloudAlibaba技术栈-Higress
java·spring boot·分布式·spring cloud·intellij-idea
穿条秋裤到处跑6 小时前
记一次MybatisPlus一级缓存导致的DB对象取值逻辑错误
java·数据库·缓存
yava_free7 小时前
Java的SpringMVC
java