我是靠谱客的博主 典雅睫毛,最近开发中收集的这篇文章主要介绍service层和impl,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

service层:管理具体的功能的接口,具体业务逻辑层

package com.nz.service;
import java.util.List;
import com.nz.entity.BankAccount;
public interface JDBCService {
    //查
    public List<BankAccount> JDBCQuery();
    //新增
    public boolean JDBCAdd(BankAccount bankAccount);
    //新增后查询
    public List<BankAccount> JDBCAddQuery(BankAccount bankAccount);
    }

impl层:是继承service,dao层具体的实现类

package com.nz.service.impl;
import java.sql.Connection;
import java.util.ArrayList;
import java.util.List;
import com.nz.dao.JDBCDao;
import com.nz.entity.BankAccount;
import com.nz.service.JDBCService;
import com.nz.util.MySQLDriverUtil;
public class JDBCServiceImpl implements JDBCService{
    //创建对象
    JDBCDao jdbcDao = new JDBCDao();
    @Override
    public List<BankAccount> JDBCQuery() {
        //初始化反参
        List<BankAccount> list = new ArrayList<BankAccount>();
        //查
        try {
            list = jdbcDao.JDBCSelect();
            //尝试获取连接 
            Connection connection = MySQLDriverUtil.getConnect();
            //关闭流
            MySQLDriverUtil.flowClose(connection);
            } catch (Exception e) {
                e.printStackTrace();
                }
        return list;
        }
        //新增
    public boolean JDBCAdd(BankAccount bankAccount) {
        try {
            boolean bl = jdbcDao.JDBCInsert(bankAccount);
            //尝试获取连接
            Connection connection = MySQLDriverUtil.getConnect();
            //关闭流
            MySQLDriverUtil.flowClose(connection);
            return true;
            } catch (Exception e) {
                e.printStackTrace();
            }
        return false;
        }
        @Override
        public List<BankAccount> JDBCAddQuery(BankAccount bankAccount) { 
            try {
                boolean bl = jdbcDao.JDBCInsert(bankAccount);
                List<BankAccount> list = jdbcDao.JDBCSelect();
                return list;
                } catch (Exception e) {
                    e.printStackTrace();
                    }finally{
                        //尝试获取连接
                        Connection connection = MySQLDriverUtil.getConnect();
                        //关闭流
                        MySQLDriverUtil.flowClose(connection);
                        }
            return null;
        }
    }

最后

以上就是典雅睫毛为你收集整理的service层和impl的全部内容,希望文章能够帮你解决service层和impl所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部