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

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

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

2019-11-11 04:09:06
字體:
來源:轉載
供稿:網友

參考

(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:其它代碼沒有變

測試:

這里寫圖片描述


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 民勤县| 通榆县| 四会市| 南城县| 平乡县| 东安县| 铜鼓县| 邮箱| 白城市| 凤城市| 汨罗市| 怀柔区| 封丘县| 红原县| 贡嘎县| 峨边| 满城县| 海丰县| 定襄县| 平陆县| 平远县| 内丘县| 汝州市| 陇西县| 宣武区| 达拉特旗| 信宜市| 元阳县| 兴国县| 新龙县| 宝坻区| 庆元县| 湛江市| 金堂县| 保山市| 彝良县| 绥中县| 都匀市| 大丰市| 宿迁市| 左云县|