Spring集成Web环境的实例详解

网友投稿 760 2022-11-01

Spring集成Web环境的实例详解

Spring集成Web环境的实例详解

Spring整合Web开发需要导入的坐标

UTF-8

11

11

org.apache.maven.plugins

maven-compiler-plugin

3.8.1

11

javax.servlet

servlet-api

3.1.0

<!-- 下面是spring依赖-->

org.springframework

spring-context

4.2.4.RELEASE

javax.servlet-api

provided

Maven_Repository.javax.servlet.jsp

javax.servlet.jsp-api

2.3.1

spring-web

5.0.5.RELEASE

Maven_Repository.com.h2databaseyBzMI

h2

1.3.158

① 配置ContextLoaderListener-② 使用WebApplicationContextUtils获得应用上下文

获取ApplicationContext对象是从servletContext域中获取的,还有就是使用WebApplicationContextUtils获取app。 可以直接从Spring获取app对象,省去了自己创建。还有就是以后要使用到多次app对象,所以就是省去了new出多了app对象。

dao层代码

package com.itheima.dao.impl;

import com.itheima.dao.UserDao;

public class UserDaoImpl implements UserDao {

public void save() {

System.out.println("save is running");

}

}

service层代码

package com.itheima.service.impl;

import com.itheima.dao.UserDao;

import com.itheima.service.UserService;

public class UserServiceImpl implements UserService {

private UserDao userDao;

public void setUserDao(UserDao userDao) {

this.userDao = userDao;

}

public void save() {

userDao.save();

}

web层

package com.itheima.web;

import com.itheima.service.UserService;

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import org.springframework.web.context.WebApplicationContext;

import org.springframework.web.context.support.WebApplicationContextUtils;

import javax.servlet.ServletContext;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import java.io.IOException;

@WebServlet("/servlet")

public class UserServlet extends HttpServlet {

@Override

protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

// ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");

ServletContext servletContext = this.getServletContext();

// ApplicationContext app = (ApplicationContext) servletContext.getAttribute("app");

// ApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);

ApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);

UserService userService = (UserService) app.getBean("userService");

userService.save();

}

}

applicationContext.xml

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">

web.xml

xmlns:xsi="http://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">

contextConfigLocation

classpath:applicationContext.xml

org.springframework.web.context.ContextLoaderListener

xmlns:xsi="http://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">

contextConfigLocation

classpath:applicationContext.xml

org.springframework.web.context.ContextLoaderListener

问题:

在配置maven时候,project下面有红色波浪线的话,可能是复制的坐标,需要重写写一遍,还有就是是maven可能是3.6.3版本,idea和maven可能会出现冲突,所以要降低maven版本,改为3.6.1版本即可。

在部署tomcat的时候,可能回出现-的问题,如果是tomcat10,就需要降低tomcat版本,如果是tomcat8.5.5及其一下的版本,就需要做一下操作。

就会出现lib包,再重新部署一下项目就可以了。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:go-txdb - 基于单一事务的数据库驱动程序主要用于测试目的
下一篇:#yyds干货盘点# leetcode算法题:字母异位词分组
相关文章

 发表评论

暂时没有评论,来抢沙发吧~