Spring之使用sts开发Web项目

    技术2024-12-23  14

    关联服务器,还要下载tomcat服务器 windows-->Preference-->service-->Runtime Enviroment-->add new Dynamic Web Project-->Target runtime service-->add

    使用sts开发web项目,引入七个架包,放在WEB-INF->lib中 spring-web.jar提供监听器,

    在Web启动的时候,采用监听器,实例化SpringIOC容器, 但spring-web-4.3.9.RELEASE架包中已经有监听器了,直接在web.xml中配置就可以了

    <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>

    将项目添加到服务器中,启动服务器,没有报错,就说明成功了

    Processed: 0.012, SQL: 9