BOOT客户管理系统(详解)

BOOT客户管理系统(详解)

Github:https://github.com/wz20

Gitee:https://gitee.com/Wang-ZeLXM/boot-crm

本文中的代码不可以直接粘贴,因为有一些没有写在注释中的文字分析!请前往github,或CSDN资源

演示图:

BOOT客户管理系统(详解)_第1张图片

本系统SSM整合思路:

BOOT客户管理系统(详解)_第2张图片

springMVC系统流程图:

BOOT客户管理系统(详解)_第3张图片

一. 环境搭建

1.pom.xml添加依赖

        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>4.11version>
            <scope>testscope>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>5.2.12.RELEASEversion>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-aopartifactId>
            <version>5.2.12.RELEASEversion>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-webmvcartifactId>
            <version>5.2.12.RELEASEversion>
        dependency>
        
        <dependency>
            <groupId>javax.servletgroupId>
            <artifactId>servlet-apiartifactId>
            <version>2.5version>
        dependency>
        <dependency>
            <groupId>javax.servlet.jspgroupId>
            <artifactId>jsp-apiartifactId>
            <version>2.2version>
        dependency>
        <dependency>
            <groupId>javax.servletgroupId>
            <artifactId>jstlartifactId>
            <version>1.2version>
        dependency>
        
        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatisartifactId>
            <version>3.5.2version>
        dependency>
        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatis-springartifactId>
            <version>2.0.6version>
        dependency>
        
        
        <dependency>
            <groupId>mysqlgroupId>
            <artifactId>mysql-connector-javaartifactId>
            <version>8.0.24version>
        dependency>
        
        <dependency>
            <groupId>com.alibabagroupId>
            <artifactId>druidartifactId>
            <version>1.2.1version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-jdbcartifactId>
            <version>5.2.12.RELEASEversion>
        dependency>
        
        <dependency>
            <groupId>log4jgroupId>
            <artifactId>log4jartifactId>
            <version>1.2.14version>
        dependency>
        <dependency>
            <groupId>org.slf4jgroupId>
            <artifactId>slf4j-apiartifactId>
            <version>1.7.25version>
        dependency>
        <dependency>
            <groupId>org.slf4jgroupId>
            <artifactId>slf4j-log4j12artifactId>
            <version>1.7.25version>
        dependency>
        <dependency>
            <groupId>ch.qos.logbackgroupId>
            <artifactId>logback-classicartifactId>
            <version>1.2.3version>
        dependency>
        <dependency>
            <groupId>ch.qos.logbackgroupId>
            <artifactId>logback-coreartifactId>
            <version>1.2.3version>
        dependency>
        <dependency>
            <groupId>org.logback-extensionsgroupId>
            <artifactId>logback-ext-springartifactId>
            <version>0.1.4version>
        dependency>
		
         <dependency>
             <groupId>org.apache.commonsgroupId>
             <artifactId>commons-lang3artifactId>
             <version>3.11version>
         dependency>
        
        
        <dependency>
            <groupId>com.fasterxml.jackson.coregroupId>
            <artifactId>jackson-databindartifactId>
            <version>2.12.2version>
        dependency>
        
        <dependency>
            <groupId>commons-fileuploadgroupId>
            <artifactId>commons-fileuploadartifactId>
            <version>1.3.2version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-txartifactId>
            <version>5.2.12.RELEASEversion>
        dependency>
        
        <dependency>
            <groupId>org.projectlombokgroupId>
            <artifactId>lombokartifactId>
            <version>1.18.20version>
        dependency>

2. 创建目录结构

BOOT客户管理系统(详解)_第4张图片

3. 配置文件的编写

spring配置文件—applicationContext的编写


<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" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <context:component-scan base-package="com.wangze" use-default-filters="true">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    context:component-scan>

    <context:property-placeholder location="classpath:db.properties"/>
    
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        
        <property name="maxActive" value="10" />
        <property name="minIdle" value="5" />
    bean>
    
    <bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
        <property name="typeAliasesPackage" value="com.wangze.core.entity"/>有了这个别名,在mapper中就可以不用写全类名
        <property name="mapperLocations">
            <list>
                <value>classpath:com.wangze.mapper/*Mapper.xmlvalue>扫描mapper下所有以Mapper结尾的文件
            list>
        property>
    bean>
    
    <bean id="scanner"
          class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactoryBean"/>
        <property name="basePackage" value="com.wangze.core.dao">  指定mapper对应的dao接口包
        property>
    bean>



    <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    bean>
    <tx:annotation-driven transaction-manager="dataSourceTransactionManager"/>
    

beans>

mvc配置文件


<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"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="com.wangze" use-default-filters="false">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    context:component-scan>
    
    <context:property-placeholder location="classpath:resource.properties"/>
    
    <mvc:annotation-driven/>
    
    <mvc:resources location="/js/" mapping="/js/**" />
    <mvc:resources location="/css/" mapping="/css/**" />
    <mvc:resources location="/fonts/" mapping="/fonts/**" />
    <mvc:resources location="/images/" mapping="/images/**" />

    
    <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    bean>


beans>

db.properties(数据库连接池)

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/boot_crm
jdbc.username=root
jdbc.password=123456
jdbc.initialSize=5

resource.properties(用于查询数据字典中的数据)

customer.from.type=002
customer.industry.type=001
customer.level.type=006

log4j.properties(log4j配置文件)

# resources文件夹根目录下
log4j.rootLogger=debug,console
log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.Target=System.out
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n

logback.xml(logback配置文件)

当取消spring文件用spring3.0+提供的@Bean所取代时,log4j不能用了,我们使用logback日志


<configuration>
    
    <appender name="STDOUT"
              class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            
            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS}
                [%thread] %-5level %logger{50} - %msg%npattern>
        encoder>
    appender>
    <root level="DEBUG">
        <appender-ref ref="STDOUT" />
    root>
configuration>

web.xml


<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <context-param>
        <param-name>contextConfigLocationparam-name>
        <param-value>classpath:applicationContext.xmlparam-value>
    context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
    listener>

    <servlet>
        <servlet-name>springmvcservlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>  //中央控制器
        <init-param>
            <param-name>contextConfigLocationparam-name>
            <param-value>classpath:springmvc-config.xmlparam-value>
        init-param>
        <load-on-startup>1load-on-startup>         //启动时机
    servlet>
    <servlet-mapping>
        <servlet-name>springmvcservlet-name>
        <url-pattern>/url-pattern>             //默认所有请求都被springmvc处理,需要配置静态资源不被拦截;
    servlet-mapping>

    <filter>
        <filter-name>encodingFilterfilter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>
        <init-param>
            <param-name>encodingparam-name>
            <param-value>UTF-8param-value>
        init-param>
        <init-param>
            <param-name>forceRequestEncodingparam-name>
            <param-value>trueparam-value>
        init-param>
        <init-param>
            <param-name>forceResponseEncodingparam-name>
            <param-value>trueparam-value>
        init-param>
    filter>
    <filter-mapping>
        <filter-name>encodingFilterfilter-name>
        <url-pattern>/*url-pattern>
    filter-mapping>

    <welcome-file-list>
        <welcome-file>index.jspwelcome-file>
    welcome-file-list>
web-app>

4.导入页面资源

请访问我的github获取:https://github.com/wz20 

5.导入数据库

boot_crm

二、实现登录功能(User相关)

用户发出登录请求后,验证登录账号和密码,如果正确,跳转视图层;如果错误,给出提示;

1.编写user实体类

在entity包下,由于我使用了lombok,所以@Data 自动生成set,get方法

package com.wangze.core.entity;

import lombok.Data;
import org.springframework.stereotype.Component;

import java.io.Serial;
import java.io.Serializable;

/**
 * @author: 王泽20
 * 一个对象序列化的接口,一个类只有实现了Serializable接口,它的对象才能被序列化。
 *    从说明中我们可以看到,如果我们没有自己声明一个serialVersionUID变量,接口会默认生成一个serialVersionUID
 *    但是强烈建议用户自定义一个serialVersionUID,因为默认的serialVersionUID对于class的细节非常敏感,反序列化时可能会导致InvalidClassException这个异常。
 *    在前面我们已经新建了一个实体类User实现Serializable接口,并且定义了serialVersionUID变量。
 */
@Component
@Data
public class User implements Serializable {
     
    @Serial
    private static final long serialVersionUID = 1L;
    private Integer user_Id;     //用户id
    private String user_code;   //用户账号
    private String user_name;   //用户名称
    private String user_password;   //用户密码
    private Integer user_state;     //用户状态




}

2.编写UserDao接口

package com.wangze.core.dao;

import com.wangze.core.entity.User;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

/**
 * @author: 王泽20
 * 通过账号密码查询用户
 */
@Repository   //这个注解相当于标签,是@Component的衍生注解,用于dao层
public interface UserDao {
     

    public User findUser(@Param("usercode") String usercode, @Param("password") String password);
    //当你使用了使用@Param注解来声明参数时,如果使用 #{} 或 ${} 的方式都可以。
    //在旧版本中如果想在mapper.xml 中引用变量使用${} 必须用@param为变量起别名;新版只要是只有一个参数都可以不用起别名
    //# 和 $ 到底有什么区别???   #采用占位符的方式   $采用参数拼接的方式    参数拼接有SQL注入的风险

}

对应mapper.xml



<mapper namespace="com.wangze.core.dao.UserDao">

    <select id="findUser" parameterType="String" resultType="com.wangze.core.entity.User">
        select * from sys_user
        where user_code = #{usercode}
        and user_password = #{password}
        and user_state = '1'
    select>
mapper>

3.编写UserService接口

package com.wangze.core.service;

import com.wangze.core.entity.User;

public interface UserService {
     
    public User findUser(String usercode,String password);


}

4.编写UserServiceImpl

package com.wangze.core.service;

import com.wangze.core.dao.UserDao;
import com.wangze.core.entity.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * @author: 王泽20
 */
@Service  //这个注解相当于标签,是@Component的衍生注解,用于service层
@Transactional
public class UserServiceImpl implements UserService {
     
    @Autowired				//注入成员变量userDao
    private UserDao userDao;


    @Override  //在数据库中找这个user
    public User findUser(String usercode, String password) {
     
        User user =this.userDao.findUser(usercode,password);
        return user;
    }
}

5.编写UserController类

package com.wangze.core.controller;
import com.wangze.core.entity.User;
import com.wangze.core.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import javax.servlet.http.HttpSession;

/**
 * @author: 王泽20
 */
@Controller  //这个注解相当于标签,是@Component的衍生注解,用于Controller层
public class UserController {
     
    @Autowired          //依赖注入
    private UserService userService;
    @RequestMapping(value = "/login",method = RequestMethod.POST)   //必须是post方法 
    public String login(String usercode, String password, Model model, HttpSession session){
     
        User user = userService.findUser(usercode,password);
        if(user != null){
     
                session.setAttribute("USER_SESSION",user);
                return "customer";
        }
        model.addAttribute("msg","账号或密码错误,请重新输入");

        return "login";
    }


}

6.测试

登录验证(拦截器)

1.创建LoginInterceptor类

package com.wangze.core.interceptor;
import com.wangze.core.entity.User;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;

/**
 * @author: 王泽20    springmvc中的拦截器,只有返回值为true,后面的方法才会继续执行
 */
@Component
public class LoginInterceptor implements HandlerInterceptor {
     
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response,Object handler) throws ServletException, IOException {
     
        //获取请求的url
        String url =request.getRequestURI();
        //拦截不是登录的请求
        if(url.contains("/login")){
     
            return true;
        }
        //获取session
        HttpSession session =request.getSession();
        User user= (User) session.getAttribute("USER_SESSION");
        //判断session中是否有用户数据,如果有,则返回true,继续向下执行
        if (user != null){
     
            return true;
        }
        //不符合条件的给出提示信息,并转发到登录界面
        request.setAttribute("msg","您还没有登录,请先登录");
        request.getRequestDispatcher("/WEB-INF/jsp/login.jsp").forward(request,response);  //抛出异常
        return false;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
     

    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
     

    }
}

2.在springmvc配置文件中配置拦截器


    <mvc:interceptors>
    <mvc:interceptor>
        <mvc:mapping path="/**"/>
        <ref bean="loginInterceptor"/>
    mvc:interceptor>
    mvc:interceptors>

3.验证

 @RequestMapping("/tocon")
    public String tocon(){
     
        return "customer";
    }

浏览器输入...../tocon   

退出登录

在userController中

 /* 退出登录 */
    @RequestMapping("logout")
    public String logout(HttpSession session){
     
        session.invalidate();  //清除session
        return "redirect:login";

    }

    //向用户登录界面跳转
    @RequestMapping(value = "login",method = RequestMethod.GET)
    public String toLogin(){
     
        return "login";
    }

三、客户管理模块

对客户表,进行增删改查  (重点:分页查询  具体两个工具类此处不做介绍,在github中可以获取源码)

一、查询操作

1.实体类

  • Customer

    package com.wangze.core.entity;
    
    import lombok.Data;
    import org.springframework.stereotype.Component;
    
    import java.io.Serial;
    import java.io.Serializable;
    import java.util.Date;
    
    /**
     * @author: 王泽20
     */
    @Data
    @Component
    public class Customer implements Serializable {
           
        @Serial
        private static final long serialVersionUID = 1L;
        private Integer cust_id;                    //客户编号
        private String cust_name;                   //客户名称
        private Integer cust_user_id;               //负责人id
        private Integer cust_create_id;              //创建人id
        private String cust_source;                 //客户信息来源
        private String cust_industry;               //客户所属行业
        private String cust_level;                  //客户级别
        private String cust_linkman;                //联系人
        private String cust_phone;                  //固定电话
        private String cust_mobile;                 //移动电话
        private String cust_zipcode;                //邮政编码
        private String cust_address;                //联系地址
        private Date cust_createtime;               //创建时间
        private Integer start;                      //起始行
        private Integer rows;                       //所取行数
    
    
    
    }
    
    
  • 数据字典 BaseDict

    package com.wangze.core.entity;
    import lombok.Data;
    import org.springframework.stereotype.Component;
    import java.io.Serial;
    import java.io.Serializable;
    
    /**
     * @author: 王泽20
     */
    @Data
    @Component
    public class BaseDict implements Serializable {
           
        @Serial
        private static final long serialVersionUID = 1L;
        private String dict_id;                 //数据字典id
        private String dict_type_code;          //数据字典类别代码
        private String dict_type_name;          //数据字典类别名称
        private String dict_item_name;          //数据字典项目名称
        private String dict_item_code;          //数据字典项目代码
        private Integer dict_sort;          //排序字段
        private String dict_enable;         //是否可用
        private String dict_memo;           //备注
    
    }
    
    

2.Dao

  • CustomerDao

    package com.wangze.core.dao;
    
    import com.wangze.core.entity.Customer;
    import org.springframework.stereotype.Repository;
    
    import java.util.List;
    
    @Repository
    public interface CustomerDao {
           
        //客户列表
        public List<Customer> selectCustomerList(Customer customer);
        //客户数
        public Integer selectCustomerListCount(Customer customer);
    
    
    }
    
    
  • BaseDictDao

    package com.wangze.core.dao;
    
    import com.wangze.core.entity.BaseDict;
    
    import java.util.List;
    
    public interface BaseDictDao {
           
        public List<BaseDict> selectBaseDictByTypeCode(String typecode);
    
    
    }
    
    

3.Mapper

  • CustomerMapper

    
    
    <mapper namespace="com.wangze.core.dao.CustomerDao">
    	<sql id="selectCustomerListWhere">
    		<where>
    			<if test="cust_name != null">
    				cust_name like "%"#{cust_name}"%"
    			if>
    			<if test="cust_source != null">
    				and cust_source = #{cust_source}
    			if>
    			<if test="cust_industry != null">
    				and cust_industry = #{cust_industry}
    			if>
    			<if test="cust_level != null">
    				and cust_level = #{cust_level}
    			if>
    		where>
    	sql>
    
    	<select id="selectCustomerList" parameterType="com.wangze.core.entity.Customer" resultType="com.wangze.core.entity.Customer">
    		SELECT
    		cust_id,
    		cust_name,
    		cust_user_id,
    		cust_create_id,
    		b.dict_item_name,cust_source,
    		c.dict_item_name,cust_industry,
    		d.dict_item_name,cust_level,
    		cust_linkman,
    		cust_phone,
    		cust_mobile,
    		cust_createtime
    		FROM
    		customer a
    		LEFT JOIN (
    		SELECT
    		dict_id,
    		dict_item_name
    		FROM
    		base_dict
    		WHERE
    		dict_type_code = '002'
    		) b ON a.cust_source = b.dict_id
    		LEFT JOIN (
    		SELECT
    		dict_id,
    		dict_item_name
    		FROM
    		base_dict
    		WHERE
    		dict_type_code = '001'
    		) c ON a.cust_industry = c.dict_id
    		LEFT JOIN (
    		SELECT
    		dict_id,
    		dict_item_name
    		FROM
    		base_dict
    		WHERE
    		dict_type_code = '006'
    		) d ON a.cust_level = d.dict_id
    		<include refid="selectCustomerListWhere"/>
    		
    		<if test="start !=null and rows != null">
    			limit #{start},#{rows}
    		if>
    	select>
    	
    	<select id="selectCustomerListCount" parameterType="com.wangze.core.entity.Customer" resultType="Integer">
    		select count(*) from customer
    		<include refid="selectCustomerListWhere"/>
    	select>
    mapper>
    
  • BaseDictMapper.xml

    
    
    <mapper namespace="com.wangze.core.dao.BaseDictDao">
    	<select id="selectBaseDictByTypeCode" parameterType="String" resultType="com.wangze.core.entity.BaseDict">
    		select * from base_dict where dict_type_code=#{typecode}
    	select>
    
    mapper>
    

4.service

  • CustomerService

    package com.wangze.core.service;
    
    import com.wangze.common.utils.Page;
    import com.wangze.core.entity.Customer;
    import org.springframework.stereotype.Service;
    
    @Service
    public interface CustomerService {
           
        // 查询客户列表
    
        public Page<Customer> findCustomerList(Integer page,Integer rows,String custName,String custSource,String custIndustry,String custLevel);
    
    
    }
    
    
  • BaseDictService

    package com.wangze.core.service;
    
    import com.wangze.core.entity.BaseDict;
    import org.springframework.stereotype.Service;
    
    import java.util.List;
    
    @Service
    public interface BaseDictService {
           
        //根据类别代码查询数据字典
    
        public List<BaseDict> findBaseDictByTypeCode(String typecode);
    
    
    }
    
    

5.serviceimpl

  • Custormer

    package com.wangze.core.service;
    
    import com.wangze.common.utils.Page;
    import com.wangze.core.dao.CustomerDao;
    import com.wangze.core.entity.Customer;
    import org.apache.commons.lang3.StringUtils;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Service;
    import org.springframework.transaction.annotation.Transactional;
    
    
    import java.util.List;
    
    /**
     * @author: 王泽20
     * 客户管理
     */
    
    @Service("customerService")
    @Transactional
    public class CustomerServiceImpl implements CustomerService{
           
        @Autowired
        private CustomerDao customerDao;
    
        @Override
        public Page<Customer> findCustomerList(Integer page, Integer rows, String custName, String custSource, String custIndustry, String custLevel) {
           
          //创建客户对象
            Customer customer =new Customer();
            // 判断客户名称
            if(StringUtils.isNotBlank(custName)){
           
                customer.setCust_name(custName);
            }
            // 判断客户信息来源
            if(StringUtils.isNotBlank(custSource)){
           
                customer.setCust_source(custSource);
            }
            // 判断客户所属行业
            if(StringUtils.isNotBlank(custIndustry)){
           
                customer.setCust_industry(custIndustry);
            }
            // 判断客户级别
            if(StringUtils.isNotBlank(custLevel)){
           
                customer.setCust_level(custLevel);
            }
            // 当前页
            customer.setStart((page-1) * rows) ;
            // 每页数
            customer.setRows(rows);
            // 查询客户列表
            List<Customer> customers =
                    customerDao.selectCustomerList(customer);
            // 查询客户列表总记录数
            Integer count = customerDao.selectCustomerListCount(customer);
            // 创建Page返回对象
            Page<Customer> result = new Page<>();
            result.setPage(page);
            result.setRows(customers);
            result.setSize(rows);
            result.setTotal(count);
            return result;
        }
    }
    
    
  • BaseDict

    package com.wangze.core.service;
    
    import com.wangze.core.dao.BaseDictDao;
    import com.wangze.core.entity.BaseDict;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Service;
    
    import java.util.List;
    
    /**
     * @author: 王泽20
     */
    @Service("baseDictService")
    public class BaseDictServiceImpl implements BaseDictService{
           
        @Autowired
        private BaseDictDao baseDictDao;
    
        @Override
        public List<BaseDict> findBaseDictByTypeCode(String typecpde) {
           
            return baseDictDao.selectBaseDictByTypeCode(typecpde);
        }
    }
    
    

6.Controller

package com.wangze.core.controller;

import com.wangze.common.utils.Page;
import com.wangze.core.entity.BaseDict;
import com.wangze.core.entity.Customer;
import com.wangze.core.service.BaseDictService;
import com.wangze.core.service.CustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

import java.util.List;

/**
 * @author: 王泽20
 */
@Controller

public class CustomerController {
     
    @Autowired
    private CustomerService customerService;
    @Autowired
    private BaseDictService baseDictService;
    @Value("${customer.from.type}")
    private String FROM_TYPE;
    // 客户所属行业
    @Value("${customer.industry.type}")
    private String INDUSTRY_TYPE;
    // 客户级别
    @Value("${customer.level.type}")
    private String LEVEL_TYPE;
    /**
     *  客户列表
     */
    @RequestMapping(value = "/customer/list")
    public String list(@RequestParam(defaultValue="1")Integer page,
                       @RequestParam(defaultValue="10")Integer rows,
                       String custName, String custSource, String custIndustry,
                       String custLevel, Model model) {
     

        // 条件查询所有客户
        Page<Customer> customers = customerService.findCustomerList(page, rows, custName,
                        custSource, custIndustry, custLevel);
        model.addAttribute("page", customers);
        // 客户来源
        List<BaseDict> fromType = baseDictService.findBaseDictByTypeCode(FROM_TYPE);
        // 客户所属行业
        List<BaseDict> industryType = baseDictService.findBaseDictByTypeCode(INDUSTRY_TYPE);
        // 客户级别
        List<BaseDict> levelType = baseDictService.findBaseDictByTypeCode(LEVEL_TYPE);
        // 添加参数
        model.addAttribute("fromType", fromType);
        model.addAttribute("industryType", industryType);
        model.addAttribute("levelType", levelType);
        model.addAttribute("custName", custName);
        model.addAttribute("custSource", custSource);
        model.addAttribute("custIndustry", custIndustry);
        model.addAttribute("custLevel", custLevel);
        return "customer";
    }


}

二、添加客户(增)

分析:增添用户实则在客户表中增加数据,前面已经创建了客户的实体类,所以只用编写controller层和service以及Dao中的方法。

此过程是添加,所以需要注意事务的提交。前面有配置…可以查看spring配置文件

1.Dao层

 // 创建客户
    public int createCustomer(Customer customer);

2.mapper


	<insert id="createCustomer" parameterType="com.wangze.core.entity.Customer">
		insert into customer(
			cust_name,
			cust_user_id,
			cust_create_id,
			cust_source,
			cust_industry,
			cust_level,
			cust_linkman,
			cust_phone,
			cust_mobile,
			cust_zipcode,
			cust_address,
			cust_createtime
		)
		values(#{cust_name},
			   #{cust_user_id},
			   #{cust_create_id},
			   #{cust_source},
			   #{cust_industry},
			   #{cust_level},
			   #{cust_linkman},
			   #{cust_phone},
			   #{cust_mobile},
			   #{cust_zipcode},
			   #{cust_address},
			   #{cust_createtime}
			  )
	insert>

3.Service

//新建客户
     int createCustomer(Customer customer);

4.ServiceImpl

/**
     * 创建客户
     */
    @Override
    public int createCustomer(Customer customer) {
     
        return customerDao.createCustomer(customer);
    }

5.Controller

/**
     * 创建客户
     */
    @RequestMapping("/customer/create")
    @ResponseBody
    public String customerCreate(Customer customer, HttpSession session) {
     
        // 获取Session中的当前用户信息
        User user = (User) session.getAttribute("USER_SESSION");
        // 将当前用户id存储在客户对象中
        customer.setCust_create_id(user.getUser_Id());
        // 创建Date对象
        Date date = new Date();
        // 得到一个Timestamp格式的时间,存入mysql中的时间格式“yyyy/MM/dd HH:mm:ss”
        Timestamp timeStamp = new Timestamp(date.getTime());
        customer.setCust_createtime(timeStamp);
        // 执行Service层中的创建方法,返回的是受影响的行数
        int rows = customerService.createCustomer(customer);
        if(rows > 0){
     
            return "OK";
        }else{
     
            return "FAIL";
        }
    }

三、修改、删除 客户

由于增删改大同小异,所以这两个合起来写了。

1.Dao层

// 通过id查询客户
    public Customer getCustomerById(Integer id);
    // 更新客户信息
    public int updateCustomer(Customer customer);
    // 删除客户
    int deleteCustomer (Integer id);

2.mapper


	<select id="getCustomerById" parameterType="Integer"
			resultType="com.wangze.core.entity.Customer">
		select * from customer where cust_id = #{id}
	select>
	
	<update id="updateCustomer" parameterType="com.wangze.core.entity.Customer">
		update customer
		<set>
			<if test="cust_name!=null">
				cust_name=#{cust_name},
			if>
			<if test="cust_user_id!=null">
				cust_user_id=#{cust_user_id},
			if>
			<if test="cust_create_id!=null">
				cust_create_id=#{cust_create_id},
			if>
			<if test="cust_source!=null">
				cust_source=#{cust_source},
			if>
			<if test="cust_industry!=null">
				cust_industry=#{cust_industry},
			if>
			<if test="cust_level!=null">
				cust_level=#{cust_level},
			if>
			<if test="cust_linkman!=null">
				cust_linkman=#{cust_linkman},
			if>
			<if test="cust_phone!=null">
				cust_phone=#{cust_phone},
			if>
			<if test="cust_mobile!=null">
				cust_mobile=#{cust_mobile},
			if>
			<if test="cust_zipcode!=null">
				cust_zipcode=#{cust_zipcode},
			if>
			<if test="cust_address!=null">
				cust_address=#{cust_address},
			if>
			<if test="cust_createtime!=null">
				cust_createtime=#{cust_createtime},
			if>
		set>
		where cust_id=#{cust_id}
	update>
	
	<delete id="deleteCustomer" parameterType="Integer">
		delete from customer where cust_id=#{id}
	delete>

3.service

 // 通过id查询客户
    public Customer getCustomerById(Integer id);
    // 更新客户
    public int updateCustomer(Customer customer);
    // 删除客户
    public int deleteCustomer(Integer id);

4.serviceImpl

 /**
     * 创建客户
     */
    @Override
    public int createCustomer(Customer customer) {
     
        return customerDao.createCustomer(customer);
    }
    /**
     * 通过id查询客户
     */
    @Override
    public Customer getCustomerById(Integer id) {
     
        Customer customer = customerDao.getCustomerById(id);
        return customer;
    }
    /**
     * 更新客户
     */
    @Override
    public int updateCustomer(Customer customer) {
     
        return customerDao.updateCustomer(customer);
    }
    /**
     * 删除客户
     */
    @Override
    public int deleteCustomer(Integer id) {
     
        return customerDao.deleteCustomer(id);
    }

5.controller

   /**
     * 通过id获取客户信息
     */
    @RequestMapping("/customer/getCustomerById")
    @ResponseBody
    public Customer getCustomerById(Integer id) {
     
        Customer customer = customerService.getCustomerById(id);
        return customer;
    }
    /**
     * 更新客户
     */
    @RequestMapping("/customer/update")
    @ResponseBody
    public String customerUpdate(Customer customer) {
     
        int rows = customerService.updateCustomer(customer);
        if(rows > 0){
     
            return "OK";
        }else{
     
            return "FAIL";
        }
    }

    /**
     * 删除客户
     */
    @RequestMapping("/customer/delete")
    @ResponseBody
    public String customerDelete(Integer id) {
     
        int rows = customerService.deleteCustomer(id);
        if(rows > 0){
     
            return "OK";
        }else{
     
            return "FAIL";
        }
    }
Customer getCustomerById(Integer id) {
     
        Customer customer = customerDao.getCustomerById(id);
        return customer;
    }
    /**
     * 更新客户
     */
    @Override
    public int updateCustomer(Customer customer) {
     
        return customerDao.updateCustomer(customer);
    }
    /**
     * 删除客户
     */
    @Override
    public int deleteCustomer(Integer id) {
     
        return customerDao.deleteCustomer(id);
    }

5.controller

   /**
     * 通过id获取客户信息
     */
    @RequestMapping("/customer/getCustomerById")
    @ResponseBody
    public Customer getCustomerById(Integer id) {
     
        Customer customer = customerService.getCustomerById(id);
        return customer;
    }
    /**
     * 更新客户
     */
    @RequestMapping("/customer/update")
    @ResponseBody
    public String customerUpdate(Customer customer) {
     
        int rows = customerService.updateCustomer(customer);
        if(rows > 0){
     
            return "OK";
        }else{
     
            return "FAIL";
        }
    }

    /**
     * 删除客户
     */
    @RequestMapping("/customer/delete")
    @ResponseBody
    public String customerDelete(Integer id) {
     
        int rows = customerService.deleteCustomer(id);
        if(rows > 0){
     
            return "OK";
        }else{
     
            return "FAIL";
        }
    }

你可能感兴趣的:(项目,spring,java,ssm,项目架构,springmvc)