业务层|业务层 - taotao-manager-service
目录结构
文章图片
image.png pom
【业务层|业务层 - taotao-manager-service】taotao-manager
com.taotao
1.0-SNAPSHOT
4.0.0 taotao-manager-service
com.taotao
taotao-manager-dao
1.0-SNAPSHOT
org.springframework
spring-aop
org.springframework
spring-aspects
org.springframework
spring-beans
org.springframework
spring-context
org.springframework
spring-context-support
org.springframework
spring-core
org.springframework
spring-expression
org.springframework
spring-jdbc
org.springframework
spring-tx
org.springframework
spring-web
org.springframework
spring-webmvc
org.springframework
spring-orm
定义业务接口
package com.taotao.service;
import com.taotao.pojo.User;
import org.slf4j.LoggerFactory;
public interface UserService {User userById(int i );
}
定义业务实现
package com.taotao.service.impl;
import com.taotao.mapper.UserMapper;
import com.taotao.pojo.User;
import com.taotao.service.UserService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class IUserService implements UserService {
final static Logger logger = LoggerFactory.getLogger(IUserService.class);
@Autowired
private UserMapper userMapper;
@Override
public User userById(int i) {System.out.println("service "+i);
User user = userMapper.selectByPrimaryKey(i);
System.out.println(user);
return user;
}
}
主要处理一些业务 , 事务, 查询 ,缓存,
推荐阅读
- 后端接入层技术的一些思考
- 大数据|16-数据仓库之数据建模、数据建模表的分类、数据建模步骤、数据分层的原因和优点
- 投稿|争夺AI底层框架,大厂进入新赛点
- 前端|开发者的4个层级,你在哪一层()
- Caffe卷积神经网络视觉层Vision|Caffe卷积神经网络视觉层Vision Layers及参数详解
- 一条update语句到底加了多少锁(带你深入理解底层原理)
- 携程|携程绩后一度涨超25%:Q1营收同比保持稳定,国内业务仍承压|看财报
- java-ee|网络编程(7)(网络层协议)-----------javaweb
- 影视|与其千方百计「复活」超前点播,不如好好设计会员分层体系
- 投稿|“饿了么”免单背后的深层焦虑