文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

快速搭建SSM框架【详细】

2023-10-09 05:53

关注

文章目录

一、开发环境准备

二、搭建SSM

2.1新建Maven项目

【File】-> 【new Project】-> 【选择Archetype】
在这里插入图片描述

2.2项目整体结构

项目的整体结构: 包括resources目录下的xml和webapp目录下文件。如果不包含某些文件,就自己创建。

MVC结构、spring-config.xml(applicationContext.xml)、jdbc.properties(数据源)、mybatis-config.xml(mybatis配置类)、spring-mvc.xml(springMVC前端控制器配置类)、web.xml(web项目配置类)

在这里插入图片描述

2.3spring-config.xml配置

<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 https://www.springframework.org/schema/context/spring-context.xsd">        <context:property-placeholder location="classpath:jdbc.properties"/>        <bean id="myDataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">        <property name="url" value="${database.url}"/>        <property name="username" value="${database.username}"/>        <property name="password" value="${database.password}"/>    bean>        <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">                <property name="dataSource" ref="myDataSource"/>                <property name="configLocation" value="classpath:mybatis-config.xml"/>    bean>         <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">                <property name="sqlSessionFactoryBeanName" value="factory"/>                <property name="basePackage" value="com.shenxm.mapper"/>    bean>beans>

2.4jdbc.properties配置

database.driver=com.mysql.cj.jdbc.Driverdatabase.url=jdbc:mysql://localhost:3306/demodatabase.username=rootdatabase.password=123456

2.5mybatis-config.xml配置

DOCTYPE configuration        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"        "http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration>        <properties resource="jdbc.properties"/>    <settings>                <setting name="logImpl" value="STDOUT_LOGGING"/>                <setting name="autoMappingBehavior" value="PARTIAL"/>                <setting name="mapUnderscoreToCamelCase" value="true"/>                <setting name="lazyLoadingEnabled" value="true"/>            settings>        <mappers>                <package name="com.shenxm.mapper"/>    mappers>configuration>

2.6spring-mvc.xml配置

<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">        <mvc:annotation-driven />        <context:component-scan base-package="com.shenxm"/>beans>

2.7web.xml配置

<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">        <filter>        <filter-name>CharacterEncodingFilterfilter-name>        <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>        <init-param>            <param-name>encodingparam-name>            <param-value>UTF-8param-value>        init-param>    filter>    <filter-mapping>        <filter-name>CharacterEncodingFilterfilter-name>        <url-pattern>    private Integer id;        private String name;        private Integer age;}

2.11测试

tomcat8.5配置启动

在这里插入图片描述

访问页面:(成功)

在这里插入图片描述

来源地址:https://blog.csdn.net/love_study1314/article/details/129974446

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯