ssm页面请求到controller到service到mapper,数据库查找并返回,用配置文件

项目结构

 

  • web.xml文件
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">

  <!--spring监听器-->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>

  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <display-name>springmvc</display-name>


  <!--配置前端控制器-->
  <servlet>
    <servlet-name>DispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:spring-mvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>DispatcherServlet</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>
</web-app>
  • jdbc.properties
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3307/test?characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false
jdbc.username=root
jdbc.password=123456
  • spring-mvc.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:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
       http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd
">

    <!--配置组件扫描 扫描service和mapper-->
    <context:component-scan base-package="com.myjava.controller"></context:component-scan>

    <!--mvc注解驱动-->
    <mvc:annotation-driven/>
    <!--配置内部资源视图解析器-->
    <bean id="resourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
    <!--静态资源开放-->
    <mvc:default-servlet-handler/>
</beans>
  • 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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
    
    <!--配置组件扫描 扫描service和mapper-->
    <context:component-scan base-package="com.myjava">
    
    <!--排查controller的扫描-->
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>


<!--加载properties配置文件-->
<context:property-placeholder location="classpath:jdbc.properties"></context:property-placeholder>
    <!--配置数据源信息-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driver}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="user" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>

    <!--配置sessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <!--加载mybatis核心文件-->
        <property name="configLocation" value="classpath:SqlMapConfig.xml"></property>
    </bean>

    <!--扫描mapper所在的包 为mapper创建实现类-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.myjava.mapper"></property>
    </bean>

</beans>
  • SqlMapperCinfig.xml  (mapper由spring容器产生)
<?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.myjava.domain"/>
    </typeAliases>

<!--    &lt;!&ndash;引入外部配置文件&ndash;&gt;-->
<!--    <properties resource="jdbc.properties"></properties>-->

<!--    &lt;!&ndash;配置环境&ndash;&gt;-->
<!--    <environments default="development">-->
<!--        <environment id="development">-->
<!--            <transactionManager type="JDBC"></transactionManager>-->
<!--            <dataSource type="POOLED">-->
<!--                <property name="driver" value="${jdbc.driver}"></property>-->
<!--                <property name="url" value="${jdbc.url}"></property>-->
<!--                <property name="username" value="${jdbc.username}"></property>-->
<!--                <property name="password" value="${jdbc.password}"></property>-->
<!--            </dataSource>-->
<!--        </environment>-->
<!--    </environments>-->
    
<!--    &lt;!&ndash;指定带有注解的dao接口所在位置&ndash;&gt;-->
<!--    <mappers>-->
<!--        <package name="com.myjava.dao"></package>-->

<!--    </mappers>-->
</configuration>
  • Mapper映射文件
    <?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.myjava.mapper.RoleMapper">
        <select id="findAll" resultType="role">
            select * from sys_role
        </select>
    </mapper>
  • service业务逻辑处理接口
import com.myjava.domain.Role;

import java.util.List;

public interface RoleMapper {
    public List<Role>  findAll();
}

service实现类

 

import com.myjava.domain.Role;
import com.myjava.mapper.RoleMapper;
import com.myjava.service.RoleService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service("roleService")
public class RoleServiceImpl implements RoleService {


    @Autowired
    private RoleMapper roleMapper;
    @Override
    public List<Role> list() {

        List<Role> roleList = roleMapper.findAll();
        return roleList;
    }
}
  •  部分jsp
  • <%@ page language="java" contentType="text/html; charset=UTF-8"	pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <!-- 页面meta -->
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    <title>标题</title>
    。。。。
    。。。。
    。。。。
    		
    
    
    				        	<!--数据列表-->
    							<table id="dataList"
    								class="table table-bordered table-striped table-hover dataTable">
    								<thead>
    									<tr>
    										<th class="" style="padding-right: 0px"><input
    											id="selall" type="checkbox" class="icheckbox_square-blue">
    										</th>
    										<th class="sorting_asc">ID</th>
    										<th class="sorting_desc">角色名称</th>									
    										<th class="sorting">角色描述</th>
    										<th class="sorting">操作</th>
    									</tr>
    								</thead>
    								<tbody>
    									<c:forEach items="${roleList}" var="role">
    										<tr>
    											<td><input name="ids" type="checkbox"></td>
    											<td>${role.id}</td>
    											<td>${role.roleName}</td>
    											<td>${role.roleDesc}</td>
    											<td class="text-center">
    												<a href="#" class="btn bg-olive btn-xs">删除</a>
    											</td>
    										</tr>
    									</c:forEach>
    								</tbody>
    
    							</table>
    							<!--数据列表/-->
    
    。。。。
    。。。。
    。。。。

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值