SSM整合+代码

通过一个月的学习,整合一下一个月所学(基于xml)

一、搭建环境
1.使用
 idea
 mysql8.0
 maven
2.创建数据库表
3.创建包结构
 entity
 mapper
 service
 controller
4.创建entity实体类对应数据库表
5.maven引入所有需要依赖
 spring-mvc
 mybatis
 servlet等等
二、mybatis层整合
1.创建mybatis-config.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>
    <settings>
        <!--是否开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn-->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
    </settings>
    <typeAliases>
        <typeAlias type="com.zwj.entity.Books" alias="Books"></typeAlias>
    </typeAliases>
    <mappers>
        <mapper class="com.zwj.mapper.BookMapper"></mapper>
    </mappers>
</configuration>

2.创建mapper接口和mapper配置文件
  接口创建需要实现的方法,mapper配置文件中绑定接口,实现sql语句

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zwj.mapper.BooksMapper">
    <insert id="addBook" parameterType="Books">
        insert into books(book_name,book_counts,detail)
        values (#{bookName},#{bookCounts},#{detail})
    </insert>
    <delete id="delBookById" parameterType="int">
        delete from books where book_id=#{bid}
    </delete>
    <update id="updateBook" parameterType="Books">
        update books
        set book_name=#{bookName},book_counts=#{bookCounts},detail=#{detail}
        where book_id=#{bookId}
    </update>
    <select id="queryBookById" parameterType="int" resultType="Books">
        select * from books where book_id=#{bid}
    </select>
    <select id="queryBooks" resultType="Books">
        select * from books
    </select>
</mapper>

3.创建mybatis-spring配置文件,整合mybatis
  创建外部properties配置文件放数据库需要数据
  通过mybatis-spring包中的类MapperScannerConfigurer创建mapper实现类

<?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">

    <!--关联数据库配置文件-->
    <context:property-placeholder location="classpath:database.properties" />

    <!--数据库连接池-->
    <bean class="com.alibaba.druid.pool.DruidDataSource" id="dataSource">
        <property name="driverClassName" value="${driver}"></property>
        <property name="url" value="${url}"></property>
        <property name="username" value="${username}"></property>
        <property name="password" value="${password}"></property>
    </bean>

    <!--配置sqlSessionFactory-->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean" id="sessionFactory">
        <!--注入数据源-->
        <property name="dataSource" ref="dataSource"></property>

        <!--绑定配置文件-->
        <property name="configLocation" value="classpath:mybatis-config.xml"></property>
    </bean>

    <!--配置dao接口扫描包,实现Dao接口动态注入到Spring容器中-->
    <!--反射机制动态创建实现类注入到spring中-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!--注入SessionFactory-->
        <property name="sqlSessionFactoryBeanName" value="sessionFactory"></property>
        <!--扫描包-->
        <property name="basePackage" value="com.zwj.mapper"></property>
    </bean>
</beans>

以上为mybatis整合,即持久层

三、spring整合 service层
1.创建service接口和实现类

public class BookServiceImpl implements BookService{

    private BookMapper bookMapper;
    public void setBookMapper(BookMapper bookMapper){
        this.bookMapper = bookMapper;
    }

    @Override
    public int addBook(Books books) {
        return bookMapper.addBook(books);
    }

    @Override
    public int delBookById(int id) {
        return bookMapper.delBookById(id);
    }

    @Override
    public int updateBook(Books books) {
        return bookMapper.updateBook(books);
    }

    @Override
    public Books queryBookById(int id) {
        return bookMapper.queryBookById(id);
    }

    @Override
    public List<Books> queryBooks() {
        return bookMapper.queryBooks();
    }
}
2.通过spring配置文件对service中的mapper进行注入
		创建事务处理
<?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下面的包,如果使用注解,则开启-->
    <context:component-scan base-package="com.zwj.service" />

    <!--创建Service对象,注入属性-->
    <bean class="com.zwj.service.BookServiceImpl" id="service">
        <property name="bookMapper" value="bookMapper"></property>
    </bean>

    <!--创建事务-->
    <bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="transactionManager">
        <!--注入数据源-->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!--aop将事务切入到具体方法-->

</beans>

四、springMVC整合(xml+注解)
1.将项目添加为web项目
2.在web.xml中配置dispatcherServle控制器和characterEncodingFilter过滤器

<?xml version="1.0" encoding="UTF-8"?>
<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">

    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc-servlet.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <filter>
        <filter-name>filter</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>filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <session-config>
        <session-timeout>15</session-timeout>
    </session-config>

</web-app>

3.创建springMVC的spring配置文件

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

    <!--开启默认映射器和适配器-->
    <mvc:annotation-driven/>
    <!--默认静态资源过滤器-->
    <mvc:default-servlet-handler/>
    <!--开启注解扫描-->
    <context:component-scan base-package="com.zwj.controller"/>
    
    <!--视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>

4.创建controller,实现注解controller
  这一部分没写代码,用语言说一下吧

1.创建一个controller类使用@controller注解
2.创建一个方法返回字符串类型或者ModelAndView类型
3.方法实现@requestMapper注解,或者其他具体请求方式的注解
4.方法默认是请求转发方式,可以使用redirect:实现重定向,重定向不会过视图解析器
5.@responseBody注解可以使返回的字符串类型数据显示到页面而不跳转
6.controller层的使用方式和servlet相似就不上代码了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值