下面我将详细讲解快速搭建SSM框架(Maven)五步曲的方法步骤。具体步骤如下:
1. 创建一个基于Maven的Web项目
<groupId>com.example</groupId>
<artifactId>ssm-demo</artifactId>
<version>1.0</version>
<packaging>war</packaging>
其中,groupId
为项目组ID,artifactId
为项目ID,version
为版本号,packaging
为打包方式。这里我们选择的是打成war包。
2.导入SSM框架的依赖
在项目根目录下的pom.xml
文件中加入以下依赖:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.19</version>
</dependency>
这里包括了 Spring、SpringMVC、MyBatis和MySQL等框架的依赖。
3.配置Spring框架
在项目根目录下的src/main/resources
目录下创建文件applicationContext.xml
,配置Spring的文件路径:
<context:component-scan base-package="com.example" />
<!-- 数据库配置 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="url" value="jdbc:mysql://localhost:3306/exam?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8&useSSL=false" />
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver" />
<property name="username" value="root" />
<property name="password" value="123456" />
</bean>
<!-- Mybatis 配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mapperLocations" value="classpath*:mapper/*.xml"/>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.example.mapper"/>
</bean>
其中,context:component-scan
用于扫描Spring组件,mybatis依赖用于连接Mybatis框架和Spring框架。
4.配置SpringMVC框架
在项目根目录下的src/main/resources
目录下创建文件springmvc-servlet.xml
,配置Spring MVC的文件路径:
<context:component-scan base-package="com.example.controller"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
<mvc:annotation-driven/>
其中,context:component-scan
用于扫描SpringMVC组件,InternalResourceViewResolver
用于解析视图,mvc:annotation-driven
用于启用SpringMVC注解支持。
5.写一个Hello World例子并验证
在src/main/webapp/WEB-INF/views
目录下创建文件hello.jsp
,内容为:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
src/main/java
目录下创建一个简单的控制器:
@Controller
public class HelloController {
@RequestMapping("/hello")
public String hello(Model model) {
model.addAttribute("msg", "Hello World!");
return "hello";
}
}
其中,@Controller
用于标注控制器类,@RequestMapping
用于映射URL。控制器向模型中添加了一个名为 msg
的消息,然后返回视图hello
。
最后,部署项目并启动服务器(比如Tomcat),在浏览器中输入http://localhost:8080/ssm-demo/hello
,即可看到Hello World的页面。
至此,快速搭建了一个基于SSM框架的Maven项目。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:快速搭建SSM框架(Maven)五步曲的方法步骤 - Python技术站