SSM的整合步骤(二)

本文介绍了SSM框架整合中的SpringMVC配置,包括配置文件的设置、包扫描和注解驱动。接着,文章详细说明了项目的典型结构,如pojo、mapper、service和controller层的作用及交互方式,强调了service和controller层如何通过@Autowired注解利用Spring管理对象。
摘要由CSDN通过智能技术生成

接上ssm的整合(一)

还有最后一个配置文件springmvc:

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

<!--    设置包扫描器-->
    <context:component-scan base-package="com.bjpowernode.controller"></context:component-scan>

<!--    设置注解驱动-->
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>
注:所有的配置文件都是再resources下的哦!!

接下来就是再java文件中:

一般有这几个:

  • pojo层:将数据库中的表映射成java的calss

  • mapper(dao)层:将pojo层的class操作映射为sql语句

  • service层:写具体的业务逻辑,组合使用mapper的操作

  • controller层:负责请求转发,接受页面过来的参数,传给service处理,接到的返回值,再传给页面

再细分的话就是:

service有一个impl包,来实现service的接口(一般service的接口方法就是mapper的接口方法一致的)

service的实现类要创建一个mapper接口的对象,并用Autowired通过spring来从容器中拿对象

controller层的类也是,要创建一个service接口的对象,并用Autowired通过spring来从容器中拿对象

在此,ssm的项目骨架就搭建好啦!希望对正在学习的同学们有帮助!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值