基于ssm的CRM系统

sqlMapConfig.xml 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
	<!-- 设置别名 -->
	<typeAliases>
		<package name="com.ithou.crm.pojo"/>
	</typeAliases>
</configuration>

springmvc.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:p="http://www.springframework.org/schema/p"
	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-4.0.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

	<!-- 配置Controller扫描 -->
	<context:component-scan base-package="com.ithou.crm.controller" />
	
	<!-- 加载资源文件 -->
	<context:property-placeholder location="classpath:resource.properties"/>
	
	<!-- 配置注解驱动 -->
	<mvc:annotation-driven />
	
	<!-- 对静态资源放行 -->
	<mvc:resources location="/css/" mapping="/css/**"/>
	<mvc:resources location="/js/" mapping="/js/**"/>
	<mvc:resources location="/fonts/" mapping="/fonts/**"/>
	
	<!-- 配置视图解析器 -->
	<bean	class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<!-- 前缀 -->
		<property name="prefix" value="/WEB-INF/jsp/" />
		<!-- 后缀 -->
		<property name="suffix" value=".jsp" />
	</bean>
</beans>

小结:对静态资源放行,在springmvc.xml中配置
    <mvc:resources location="/css/" mapping="/css/**"/>

    <mvc:resources location="/js/" mapping="/js/**"/>
    <mvc:resources location="/fonts/" mapping="/fonts/**"/> 

applicationContext-service.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

	<!-- 配置Service扫描 -->
	<context:component-scan base-package="com.ithou.crm.service" />
</beans>

applicationContext-dao.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

	<!-- 配置 读取properties文件 jdbc.properties -->
	<context:property-placeholder location="classpath:jdbc.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}" />
	</bean>

	<!-- 配置SqlSessionFactory -->
	<bean class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 设置MyBatis核心配置文件 -->
		<property name="configLocation" value="classpath:config/mybatis/sqlMapConfig.xml" />
		<!-- 设置数据源 -->
		<property name="dataSource" ref="dataSource" />
	</bean>

	<!-- 配置Mapper扫描 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<!-- 设置Mapper扫描包 -->
		<property name="basePackage" value="com.ithou.crm.mapper" />
	</bean>
</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>crm_ssm</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  <!-- 配置spring -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:config/spring/applicationContext-*.xml</param-value>
	</context-param>
	
	<!-- 配置监听器加载spring -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	
	<!-- 配置过滤器,解决post的乱码问题 -->
	<filter>
		<filter-name>encoding</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>encoding</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<!-- 配置SpringMVC -->
	<servlet>
		<servlet-name>boot-crm</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath:config/spring/springmvc.xml</param-value>
		</init-param>
		<!-- 配置springmvc什么时候启动,参数必须为整数 -->
		<!-- 如果为0或者大于0,则springMVC随着容器启动而启动 -->
		<!-- 如果小于0,则在第一次请求进来的时候启动 -->
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>boot-crm</servlet-name>
		<!-- 所有的请求都进入springMVC -->
		<url-pattern>/</url-pattern>
	</servlet-mapping>
</web-app>

CustomerMapper.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ithou.crm.mapper.CustomerMapper">

	<select id="selectCustomerByQuery" parameterType="QueryVo"
		resultType="Customer">
		select * from customer
		<where>
			<if test="custName != null and custName != ''">
				cust_name like '%${custName}%'
			</if>
			<if test="custSource != null and custSource != ''">
				and cust_source = #{custSource}
			</if>
			<if test="custIndustry != null and custIndustry != ''">
				and cust_industry = #{custIndustry}
			</if>
			<if test="custLevel != null and custLevel != ''">
				and cust_level = #{custLevel}
			</if>
		</where>
		limit #{startRow},#{size}
	</select>

	<select id="countCustomer" parameterType="QueryVo" resultType="Integer">
		select count(1) from customer
		<where>
			<if test="custName != null and custName != ''">
				cust_name like '%${custName}%'
			</if>
			<if test="custSource != null and custSource != ''">
				and cust_source = #{custSource}
			</if>
			<if test="custIndustry != null and custIndustry != ''">
				and cust_industry = #{custIndustry}
			</if>
			<if test="custLevel != null and custLevel != ''">
				and cust_level = #{custLevel}
			</if>
		</where>
	</select>

	<select id="selectById" parameterType="Integer" resultType="Customer">
		select * from customer
		<where>
			cust_id = #{cust_id}
		</where>
	</select>
	
	<update id="updateById" parameterType="Customer">
		update from customer
		<set>
			<if test="cust_name != null">
				cust_name = #{cust_name},
			</if>
			<if test="cust_linkman != null">
				cust_linkman = #{cust_linkman}
			</if>
		</set>
		where cust_id = #{cust_id}
	</update>
	
	<delete id="deleteById" parameterType="Integer">
		delete from customer where cust_id = #{value}
	</delete>
</mapper>	

CustomerServiceImpl

package com.ithou.crm.service;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.ResponseBody;

import com.ithou.common.utils.Page;
import com.ithou.crm.mapper.CustomerMapper;
import com.ithou.crm.pojo.Customer;
import com.ithou.crm.pojo.QueryVo;

@Service
public class CustomerServiceImpl implements CustomerService{

	@Autowired
	private CustomerMapper customerMapper;
	
	public Page<Customer> selectPageByQuery(QueryVo vo){
		Page<Customer> page = new Page<Customer>();
		page.setSize(5);
		vo.setSize(5);
		
		if(vo != null) {
			if(null != vo.getPage()) {
				page.setPage(vo.getPage());
				vo.setStartRow((vo.getPage()-1)*vo.getSize());
			}
			if(vo.getCustName() != null) {
				vo.setCustName(vo.getCustName().trim());
			}
			if(vo.getCustIndustry() != null) {
				vo.setCustIndustry(vo.getCustIndustry().trim());
			}
			if(vo.getCustLevel() != null) {
				vo.setCustLevel(vo.getCustLevel().trim());
			}
			if(vo.getCustSource() != null) {
				vo.setCustSource(vo.getCustSource().trim());
			}
			page.setTotal(customerMapper.countCustomer(vo));
			page.setRows(customerMapper.selectCustomerByQuery(vo));
		}
		return page;
	}

	@Override
	public Customer selectCustomerById(Integer id) {
		return customerMapper.selectById(id);
	}

	@Override
	public void updateCustomerById(Customer customer) {
		customerMapper.updateById(customer);
	}

	@Override
	public void deleteCustomerById(Integer id) {
		customerMapper.deleteById(id);
	}
}

CustomerController

package com.ithou.crm.controller;

import java.util.List;

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.ResponseBody;

import com.ithou.common.utils.Page;
import com.ithou.crm.pojo.BaseDict;
import com.ithou.crm.pojo.Customer;
import com.ithou.crm.pojo.QueryVo;
import com.ithou.crm.service.BaseDictServiceImpl;
import com.ithou.crm.service.CustomerServiceImpl;

@Controller
@RequestMapping("customer")
public class CustomerController {

	@Autowired
	private BaseDictServiceImpl baseDictServiceImpl;
	@Autowired
	private CustomerServiceImpl customerServiceImpl;
	
	@Value("${from.Type}")
	private String fromTypeCode;
	@Value("${industry.Type}")
	private String industryTypeCode;
	@Value("${level.Type}")
	private String levelTypeCode;
	
	@RequestMapping("list")
	public String list(QueryVo vo,Model model) {
		
		List<BaseDict> fromType = baseDictServiceImpl.selectByDictTypeCode(fromTypeCode);//客户来源
		List<BaseDict> industryType = baseDictServiceImpl.selectByDictTypeCode(industryTypeCode);//所属行业
		List<BaseDict> levelType = baseDictServiceImpl.selectByDictTypeCode(levelTypeCode);//客户级别
		
		model.addAttribute("fromType", fromType);
		model.addAttribute("industryType", industryType);
		model.addAttribute("levelType", levelType);
		
		Page<Customer> page = customerServiceImpl.selectPageByQuery(vo);
		model.addAttribute("page",page);
		model.addAttribute("custName",vo.getCustName());
		model.addAttribute("custSource",vo.getCustSource());
		model.addAttribute("custIndustry",vo.getCustIndustry());
		model.addAttribute("custLevel",vo.getCustLevel());
		return "customer";
	}
	
	@RequestMapping("edit")
	public @ResponseBody Customer edit(Integer id) {
		return customerServiceImpl.selectCustomerById(id);
	}
	
	@RequestMapping("update")
	public @ResponseBody String update(Customer customer) {
		customerServiceImpl.updateCustomerById(customer);
		return "OK";
	}
	
	@RequestMapping("delete")
	public @ResponseBody String delete(Integer id) {
		customerServiceImpl.deleteCustomerById(id);
		return "OK";
	}
}

小结:解决硬代码问题

在springmvc中配置加载资源文件:

加载资源文件
    <context:property-placeholder location="classpath:resource.properties"/>

 在Controller层读取资源文件代码如下:

@Value("${from.Type}")
    private String fromTypeCode; 

List<BaseDict> fromType = baseDictServiceImpl.selectByDictTypeCode(fromTypeCode);//客户来源

资源文件内容为(参考jdbc.properties资源文件):

from.Type=002
industry.Type=001
level.Type=006

QueryVo

public class QueryVo {

	private String custName;//客户名称
	private String custSource;//客户来源
	private String custIndustry;//客户行业
	private String custLevel;//客户级别

	private Integer size;//每页数量
	
	private Integer page;//当前页
	
	private Integer startRow = 0;//分页起始行
get/set......
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值