基于Spring MVC + Spring + MyBatis的野生动物保护系统
Posted 明金同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于Spring MVC + Spring + MyBatis的野生动物保护系统相关的知识,希望对你有一定的参考价值。
资源下载:https://download.csdn.net/download/weixin_44893902/45603787
练习点设计: 模糊查询、删除、新增、修改
一、语言和环境
- 实现语言:JAVA语言。
- 环境要求:MyEclipse/Eclipse + Tomcat + mysql。
- 使用技术:
Jsp
+Servle
t+JavaBean
或SpringMVC
+Spring
+Mybatis
。
二、实现功能
随着社会的发展,人与动物需要和谐共处,现需要制作野生动物保护系统,主要功能如下:
1.首页默认显示所有动物列表,如图1所示。
2.鼠标悬停某行数据时,以线性过渡动画显示光棒效果,如图2所示。
3.用户输入动物名称,则完成模糊查询,显示查询结果,如图3所示。
4.用户点击升级或降级时,则弹出提示框,用户点击确定后,修改选中数据并显示最新数据,如图4和图5所示。
5.用户点击“新增”链接,则打开新增页面,填写完相关信息后点击添加按钮,增加野生动物信息数据到数据库,且页面跳转到列表页面展示最新数据,如图6和图7所示。
三、 数据库设计
1.创建数据库(animal_db
)。
2.创建数据表(tb_type
),结构如下。
字段名 | 说明 | 字段类型 | 长度 | 备注 |
---|---|---|---|---|
type_id | 类型编号 | int | 主键,自增,增量为1 | |
type_name | 类型名称 | varchar | 50 | 不能为空 |
3.创建数据表(tb_animal
),结构如下。
字段名 | 说明 | 字段类型 | 长度 | 备注 |
---|---|---|---|---|
id | 编号 | int | 主键,自增,增量为1 | |
name | 动物品种 | varchar | 50 | 不能为空 |
count | 动物数量 | int | 不能为空 | |
level | 保护等级 | int | 不能为空 | |
type_id | 类型编号 | int | 外键 |
四、推荐实现步骤
1.SSM版本的实现步骤如下:
(1)创建数据库和数据表,添加测试数据(至少添加3条测试数据)。
(2)创建Web工程并创建各个包,导入工程所需的jar文件。
(3)添加相关SSM框架支持。
(4)配置项目所需要的各种配置文件(mybatis配置文件、spring配置文件、springMVC配置文件)。
(5)创建实体类。
(6)创建MyBatis操作数据库所需的Mapper接口及其Xml映射数据库操作语句文件。
(7)创建业务逻辑相应的接口及其实现类,实现相应的业务,并在类中加入对DAO/Mapper的引用和注入。
(8)创建Controller控制器类,在Controller中添加对业务逻辑类的引用和注入,并配置springMVC配置文件。
(9)创建相关的操作页面,并使用CSS对页面进行美化。
(10)实现页面的各项操作功能,并在相关地方进行验证,操作要人性化。
(11)调试运行成功后导出相关的数据库文件并提交。
五、实现代码
1、MySQL数据库
animal_db.sql
2、项目Java代码
目录结构
animal_db
JAR包:
src
com.controller
AnimaalController.java
package com.controller;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import com.entity.TbAnimal;
import com.services.AnimmailServices;
@Controller
public class AnimaalController
@Resource
private AnimmailServices animmailServices;
//查询
@RequestMapping("/getList")
public String getAniamal(Model model,String name)
List<TbAnimal> list=animmailServices.getAnimals(name);
if (name==null||name.trim().equals(""))
name=null;
model.addAttribute("getList", list);
int size=list.size();
model.addAttribute("sizes", size);
return "Animal";
//录入
@RequestMapping("/insert")
public String getInsert(Model model,TbAnimal animal)
int count=animmailServices.inser(animal);
return "redirect:/getList.do";
//进入新增页面
@RequestMapping("/intoAdd")
public String into()
return "addAnimal";
//降级
@RequestMapping("/upDown")
public String upDown(Model model,TbAnimal animal)
int upDown=animmailServices.down(animal);
return "redirect:/getList.do";
//升级
@RequestMapping("/updateDown")
public String updateDown(Model model,TbAnimal animal)
int updateDown=animmailServices.upDown(animal);
return "redirect:/getList.do";
com.dao
TbAnimalMapper.java
package com.dao;
import com.entity.TbAnimal;
import java.util.List;
public interface TbAnimalMapper
int deleteByPrimaryKey(Integer id);
int insert(TbAnimal record);
TbAnimal selectByPrimaryKey(Integer id);
List<TbAnimal> selectAll();
int updatedown(TbAnimal record);
int updateUpdown(TbAnimal record);
//模糊查询
List<TbAnimal> selectLikeAll (String name);
TbTypeMapper.java
package com.dao;
import com.entity.TbType;
import java.util.List;
public interface TbTypeMapper
int deleteByPrimaryKey(Integer typeId);
int insert(TbType record);
TbType selectByPrimaryKey(Integer typeId);
List<TbType> selectAll();
int updateByPrimaryKey(TbType record);
TbAnimalMapper.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.dao.TbAnimalMapper" >
<resultMap id="BaseResultMap" type="com.entity.TbAnimal" >
<id column="id" property="id" jdbcType="INTEGER" />
<result column="name" property="name" jdbcType="VARCHAR" />
<result column="count" property="count" jdbcType="INTEGER" />
<result column="level" property="level" jdbcType="INTEGER" />
<result column="type_id" property="typeId" jdbcType="INTEGER" />
</resultMap>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from tb_animal
where id = #id,jdbcType=INTEGER
</delete>
<insert id="insert" parameterType="com.entity.TbAnimal" >
insert into tb_animal (id, name, count,
level, type_id)
values (#id,jdbcType=INTEGER, #name,jdbcType=VARCHAR, #count,jdbcType=INTEGER,
#level,jdbcType=INTEGER, #typeId,jdbcType=INTEGER)
</insert>
<!--降级 -->
<update id="updatedown" parameterType="com.entity.TbAnimal" >
update tb_animal
set
level = level-1
where id = #id,jdbcType=INTEGER
</update>
<!--升级 -->
<update id="updateUpdown" parameterType="com.entity.TbAnimal" >
update tb_animal
set
level = level+1
where id = #id,jdbcType=INTEGER
</update>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select id, name, count, level, type_id
from tb_animal
where id = #id,jdbcType=INTEGER
</select>
<!--查询 -->
<select id="selectAll" resultMap="BaseResultMap" >
select id, name, count, level, type_id
from tb_animal
</select>
<!--模糊查询 -->
<select id="selectLikeAll" resultMap="BaseResultMap" >
select id, name, count, level, type_id
from tb_animal
where name like "%"#name"%"
</select>
</mapper>
TbTypeMapper.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.dao.TbTypeMapper" >
<resultMap id="BaseResultMap" type="com.entity.TbType" >
<id column="type_id" property="typeId" jdbcType="INTEGER" />
<result column="type_name" property="typeName" jdbcType="VARCHAR" />
</resultMap>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from tb_type
where type_id = #typeId,jdbcType=INTEGER
</delete>
<insert id="insert" parameterType="com.entity.TbType" >
insert into tb_type (type_id, type_name)
values (#typeId,jdbcType=INTEGER, #typeName,jdbcType=VARCHAR)
</insert>
<update id="updateByPrimaryKey" parameterType="com.entity.TbType" >
update tb_type
set type_name = #typeName,jdbcType=VARCHAR
where type_id = #typeId,jdbcType=INTEGER
</update>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select type_id, type_name
from tb_type
where type_id = #typeId,jdbcType=INTEGER
</select>
<select id="selectAll" resultMap="BaseResultMap" >
select type_id, type_name
from tb_type
</select>
</mapper>
com.entity
TbAnimal.java
package com.entity;
public class TbAnimal
private Integer id;
private String name;
private Integer count;
private Integer level;
private Integer typeId;
private String typeName;
public String getTypeName()
return typeName;
public void setTypeName(String typeName)
this.typeName = typeName == null ? null : typeName.trim();
public Integer getId()
return id;
public void setId(Integer id)
this.id = id;
public String getName()
return name;
public void setName(String name)
this.name = name == null ? null : name.trim();
public Integer getCount()
return count;
public void setCount(Integer count)
this.count = count;
public Integer getLevel()
return level;
public void setLevel(Integer level)
this.level = level;
public Integer getTypeId()
return typeId;
public void setTypeId(Integer typeId)
this.typeId = typeId;
TbType.java
package com.entity;
public class TbType
private Integer typeId;
private String typeName;
public Integer getTypeId()
return typeId;
public void setTypeId(Integer typeId)
this.typeId = typeId;
public String getTypeName()
return typeName;
public void setTypeName(String typeName)
this.typeName = typeName == null ? null : typeName.trim();
com.generator
Generator.java
package com.generator;
import java.io.IOException;
import java.io.InputStream;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import org.mybatis.generator.api.MyBatisGenerator;
import org.mybatis.generator.config.Configuration;
import org.mybatis.generator.config.xml.ConfigurationParser;
import org.mybatis.generator.exception.InvalidConfigurationException;
import org.mybatis.generator.exception.XMLParserException;
import org.mybatis.generator.internal.DefaultShellCallback;
public class Generator
/*
* targetRuntime="MyBatis3Simple", 不生成Example
*/
public void generateMyBatis()
//MBG执行过程中的警告信息
List<String> warnings = new ArrayList<String>();
//当生成的代码重复时,覆盖原代码
boolean overwrite = true ;
//String generatorFile = "/generator/generatorConfig.xml";
String generatorFile = "/generatorConfig.xml";
//读取MBG配置文件
InputStream is = Generator.class.getResourceAsStream(generatorFile);
ConfigurationParser cp = new ConfigurationParser(warnings);
Configuration config;
try
config = cp.parseConfiguration(is);
DefaultShellCallback callback = new DefaultShellCallback(overwrite);
//创建MBG
MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
//执行生成代码
myBatisGenerator.generate(null);
catch (IOException e)
e.printStackTrace();
catch (XMLParserException e)
e.printStackTrace();
catch (InvalidConfigurationException e)
e.printStackTrace();
catch (SQLException e)
e.printStackTrace();
catch (InterruptedException e) Spring+Spring mvc+Mybatis整合教程(基于Maven)
Spring : 基于注解的 Spring MVC( 上 )
基于Spring MVC + Spring + MyBatis的医院就诊挂号系统
基于Spring MVC + Spring + MyBatis的医院就诊挂号系统