国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

SpringMVC學習筆記(三)使用IntelliJ IDEA開發Spring MVC HelloWorld(注解配置SpringMVC)

2019-11-11 04:10:01
字體:
來源:轉載
供稿:網友

參考

(1)SPRingMVC學習筆記(二)使用IntelliJ IDEA開發Spring MVC HelloWorld(基于Maven)(在這篇程序Demo代碼的基礎上演變) (2)《Spring入門經典》(基于本書第三章)


代碼結構

這里寫圖片描述

程序清單

AppConfig.java

package com.wiley.beginningspring.ch3.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.view.InternalResourceViewResolver;@Configuration@ComponentScan(basePackages = {"com.wiley.beginningspring.ch3"})public class AppConfig { @Bean public InternalResourceViewResolver getInternalResourceViewResolver() { InternalResourceViewResolver resolver = new InternalResourceViewResolver(); resolver.setPrefix("/WEB-INF/pages/"); resolver.setSuffix(".jsp"); return resolver; }}

web.xml

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" ><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_3_1.xsd" version="3.1"> <display-name>Archetype Created Web Application</display-name> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextClass</param-name> <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value> </init-param> <init-param> <param-name>contextConfigLocation</param-name> <param-value>com.wiley.beginningspring.ch3.config.AppConfig</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping></web-app>

PS:其它代碼沒有變

測試:

這里寫圖片描述


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乌兰浩特市| 夏邑县| 四平市| 浏阳市| 九龙坡区| 乐山市| 沈阳市| 崇左市| 东乌珠穆沁旗| 固安县| 高雄县| 宣汉县| 子长县| 延长县| 汤阴县| 盘山县| 长寿区| 鄂托克前旗| 普定县| 阜平县| 伊宁县| 台州市| 石林| 清丰县| 巨鹿县| 如东县| 河池市| 扎囊县| 威宁| 义马市| 安乡县| 济阳县| 澳门| 枝江市| 聂荣县| 水城县| 容城县| 开鲁县| 拉萨市| 彭泽县| 茂名市|