1.导入jar包,见附件,整体架构见附件。
2.配置web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <!--站点名--> <display-name>mvc</display-name> <!--指定spring配置文件--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:application-context.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:spring-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- 解决工程编码过滤器 --> <filter> <filter-name>characterEncodingFilter</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>characterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
3.配置spring-servlet.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:mvc="http://www.springframework.org/schema/mvc" 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-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <mvc:annotation-driven/> <!-- 启动包扫描功能,以便注册带有@Controller、@Service、@repository、@Component等注解的类成为spring的bean --> <context:component-scan base-package="com.nanjing.test"/> <mvc:view-controller path="/404" view-name="404"/> <mvc:view-controller path="/500" view-name="500"/> <bean id="defaultViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:order="3"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="contentType" value="text/html"/> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> <!--放过/scripts下的静态文件--> <mvc:resources mapping="/scripts/**" location="/WEB-INF/scripts/"/> </beans>
4.配置applicationContext.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:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <!-- 采用注释的方式配置bean --> <context:annotation-config/> <!-- 配置要扫描的包 --> <context:component-scan base-package="com.nanjing.test"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> <!--proxy-target-class="true"强制使用cglib代理 如果为false则spring会自动选择--> <aop:aspectj-autoproxy proxy-target-class="true"/> <!-- 数据库配置文件位置 --> <context:property-placeholder location="classpath:jdbc.properties"/> <!-- 配置dbcp数据源 --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> <!-- 队列中的最小等待数 --> <property name="minIdle" value="${jdbc.minIdle}"></property> <!-- 队列中的最大等待数 --> <property name="maxIdle" value="${jdbc.maxIdle}"></property> <!-- 最长等待时间,单位毫秒 --> <property name="maxWait" value="${jdbc.maxWait}"></property> <!-- 最大活跃数 --> <property name="maxActive" value="${jdbc.maxActive}"></property> <property name="initialSize" value="${jdbc.initialSize}"></property> <property name="validationQuery" value="${jdbc.validationQuery}"></property> <property name="testOnBorrow" value="${jdbc.testOnBorrow}"></property> <property name="testWhileIdle" value="${jdbc.testWhileIdle}"></property> </bean> <!-- 配置mybitasSqlSessionFactoryBean --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="configLocation" value="classpath:mybatis.xml"></property> </bean> <!-- 配置SqlSessionTemplate --> <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate"> <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"/> </bean> <!-- 事务配置 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <!-- 使用annotation注解方式配置事务 --> <tx:annotation-driven transaction-manager="transactionManager"/> </beans>
5.编写jdbc.properties
jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://192.168.1.58:3306/test jdbc.username=root jdbc.password=123456 jdbc.maxActive = 20 jdbc.maxIdle =50 jdbc.minIdle=1 jdbc.initialSize =5 jdbc.maxWait =3000 jdbc.validationQuery =select 1 from alyssa_student jdbc.testOnBorrow =true jdbc.testWhileIdle =true
6.编写mybatis.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "mybatis-3-config.dtd"> <configuration> <typeAliases> <typeAlias alias="student" type="com.nanjing.test.domain.Student"/> </typeAliases> <mappers> <mapper resource="/com/nanjing/test/sqlMapper/sqlMapper-student.xml"/> </mappers> </configuration>
7.编写sqlMapper-student.xml
<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "D:\Idea_Projects\NUSSP\src\com\nwsuaf\ssp\sqlMapper\mybatis-3-mapper.dtd"> <mapper namespace="com.nwsuaf.ssp.domain"> <resultMap type="com.nanjing.test.domain.Student" id="studentResult"> <result property="id" column="id"/> <result property="name" column="name_alyssa"/> <result property="birth" column="birth_alyssa"/> <result property="score" column="score_alyssa"/> </resultMap> <select id="selectAllStudent" resultMap="studentResult"> select * from alyssa_student </select> <insert id="insertStudent" parameterType="student"> insert into alyssa_student(name_alyssa,birth_alyssa,score_alyssa) values (#{name},#{birth},#{score}) </insert> <update id="updateStudent" parameterType="student"> update alyssa_student set name_alyssa=#{name}, birth_alyssa=#{birth},score_alyssa=#{score} </update> </mapper>
8.编写controller类
package com.nanjing.test.action; import com.nanjing.test.domain.Student; import com.nanjing.test.service.StudentService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import java.util.HashMap; import java.util.List; import java.util.Map; @Controller public class StudentController { @Autowired private StudentService studentService; @RequestMapping(value = "/student/showlist") public ModelAndView showlist() { List<Student> studentList = studentService.selectAllStudent(); Map map = new HashMap(); map.put("studentList", studentList); return new ModelAndView("student_list", map); } @RequestMapping(value = "/student/saveStudent") public String saveStudent(Student student) { studentService.insertStudent(student); return "redirect:/student/showlist"; } }
9.编写实体student类
package com.nanjing.test.domain; public class Student { private int id; private String name; private String birth; private String score; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getBirth() { return birth; } public void setBirth(String birth) { this.birth = birth; } public String getScore() { return score; } public void setScore(String score) { this.score = score; } }
10.编写StudentDao接口
package com.nanjing.test.dao; import com.nanjing.test.domain.Student; import java.util.List; public interface StudentDao { public List<Student> selectAllStudent(); public void insertStudent(Student student); public void updateStudent(Student student); }
11.编写studentDaoImpl实现类
package com.nanjing.test.dao; import com.nanjing.test.domain.Student; import org.mybatis.spring.SqlSessionTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import java.util.List; @Repository public class StudentDaoImpl implements StudentDao{ @Autowired private SqlSessionTemplate sqlSessionTemplate; public List<Student> selectAllStudent() { return sqlSessionTemplate.selectList("selectAllStudent"); } public void insertStudent(Student student) { sqlSessionTemplate.insert("insertStudent", student); } public void updateStudent(Student student) { sqlSessionTemplate.update("updateStudent", student); } }
12.编写StudentService接口
package com.nanjing.test.service; import com.nanjing.test.domain.Student; import org.springframework.stereotype.Service; import java.util.List; @Service public interface StudentService { public List<Student> selectAllStudent(); public void insertStudent(Student student); public void updateStudent(Student student); }
13.编写StudentServiceImpl实现类
package com.nanjing.test.service; import com.nanjing.test.dao.StudentDao; import com.nanjing.test.domain.Student; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class StudentServiceImpl implements StudentService { @Autowired private StudentDao studentDao; public List<Student> selectAllStudent() { return studentDao.selectAllStudent(); } public void insertStudent(Student student) { studentDao.insertStudent(student); } public void updateStudent(Student student) { studentDao.updateStudent(student); } }
7.编写student_list.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html> <head> <title>学生列表</title> </head> <body> <form action="${pageContext.request.contextPath}/student/saveStudent" method="post"> <table> <tr> <td>姓名:</td> <td><input name="name" type="text"></td> </tr> <tr> <td>生日:</td> <td><input name="birth" type="text"></td> </tr> <tr> <td>分数:</td> <td><input name="score" type="text"></td> </tr> <tr> <td><input type="submit" value="提交"></td> </tr> </table> </form> </br> <table> <tr> <th>姓名</th> <th>生日</th> <th>分数</th> </tr> <c:forEach items="${studentList}" var="student" varStatus="status"> <tr> <td>${student.name}</td> <td>${student.birth}</td> <td>${student.score}</td> </tr> </c:forEach> </table> </body> </html>
相关推荐
完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis).zip 完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis).zip 完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统...
Java基于Spring+SpringMVC+MyBatis实现的学生信息管理系统源码,SSM+Vue的学生管理系统。 Java基于Spring+SpringMVC+MyBatis实现的学生信息管理系统源码,SSM+Vue的学生管理系统。 Java基于Spring+SpringMVC+...
基于Spring+SpringMVC+Mybatis架构的博客系统:博客管理、图表数据、日志分析、访问记录、图库管理、资源管理、友链通知等。良好的页面预加载,无限滚动加载,文章置顶,博主推荐等。提供 用户端+管理端 的整套系统...
基于SpringMVC+Spring+MyBatis个人技术博客系统源码.zip 完整代码,可运行 项目描述 基于SSM实现的一个个人博客系统,适合初学SSM和个人博客制作的同学学习。有了这个源码,直接买了阿里云或腾讯服务器,就可以部署...
项目描述 在上家公司自己集成的一套系统,用了两个多月的时间完成的:Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级开发系统 Springboot作为容器,使用mybatis作为持久层框架 使用官方推荐的thymeleaf做为...
本后台管理系统,采用流行的框架springMvc+spring+mybatis+shiro+redis+ehcache开发,实现了权限管理(菜单权限、数据权限),solr全文搜索引擎,activiti工作流程引擎,cas单点登陆等功能,完善的代码生成器 后期还...
SpringMVC和MyBatis是Java Web开发中的两个核心框架,它们在构建高效、模块化的应用程序方面发挥着重要作用。SpringMVC是Spring框架的一部分,主要负责处理HTTP请求和响应,而MyBatis则是一个轻量级的持久层框架,...
springmvc+mybatis+bootstrap框架+oracle数据库 1、兼容BootStrap,兼容Jquery UI。所以可以用bootstrap和jqueryui的功能。当然还有jquery了。 2、图标使用font awesome 3.2,可以使用字体图标 3、表格可以用...
基于spring+springMvc+mybatis 开发的企业门户网站基于spring+springMvc+mybatis 开发的企业门户网站,适合具有一定编程基础,比如计算机专业的大学生或者1-3年工作经验的开发人员。手写简化版 Spring 框架,了解 ...
3. 配置SpringMVC:创建SpringMVC的配置文件,如servlet-context.xml,配置DispatcherServlet、ViewResolver、HandlerMapping等。 4. 配置Mybatis:创建mybatis的全局配置文件,mybatis-config.xml,配置数据源、...
基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM...
基于 SpringBoot + Spring + SpringMvc + Mybatis + Shiro+ Redis 开发单点登录管理系统 基于 SpringBoot + Spring + SpringMvc + Mybatis + Shiro+ Redis 开发单点登录管理系统 基于 SpringBoot + Spring + ...
Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理...
通过SpringMvc+Spring+Mybatis+Maven整合,学习用maven搭建框架
《Spring+SpringMVC+MyBatis:三位一体的Java企业级开发框架》 在Java企业级应用开发领域,Spring、SpringMVC和MyBatis是三个不可或缺的重要组件,它们共同构建了一个强大的、灵活的和可扩展的应用框架。这篇文章将...
在IT行业中,构建高效、可扩展的Web应用是至关重要的,而"spring+springMVC+mybatis+quartz动态定时任务创建"就是一个常见的技术栈,用于实现这样的目标。这个组合充分利用了各组件的优势,提供了强大的后端服务支持...
这个"springMVC+mybatis+shiro+redis 项目整合demo"就是一个实例,展示了如何将这些技术集成到一个项目中,以实现高效的数据处理、用户认证授权和缓存管理。 首先,`SpringMVC` 是 Spring 框架的一部分,它是一个...
ZooKeeper+dubbo+springMvc+Mybatis+Mysql实例,项目是由maven搭建的 整合Dubbo\spring\springMvc\Mybatis,整个压缩包中有两个项目分别是提供者和消费,启动方式是打成WAR形式放到tomcat中启动。
3. Mybatis: Mybatis是一个轻量级的持久层框架,它将SQL语句与Java代码分离,允许开发者在XML或注解中编写动态SQL。Mybatis通过SqlSessionFactory创建SqlSession对象,通过SqlSession执行SQL操作并获取结果集。...
仓库管理系统,前端使用BootStrap+JQuery+JSP,后端使用Spring+SpringMVC+Mybatis,数据库使用MySQL,开发平台IntelliJ IDEA+open JDK1.8 amd64