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

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

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

2019-11-11 05:38:40
字體:
來源:轉載
供稿:網友

參考

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

測試:

這里寫圖片描述


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 基隆市| 平谷区| 出国| 临安市| 广州市| 三明市| 安龙县| 穆棱市| 黑水县| 无为县| 香格里拉县| 两当县| 大庆市| 嫩江县| 涞源县| 崇州市| 潼南县| 文登市| 信丰县| 石柱| 大竹县| 涟源市| 顺昌县| 酒泉市| 奉节县| 海南省| 龙陵县| 镇赉县| 郸城县| 德化县| 保山市| 林西县| 上杭县| 抚宁县| 无为县| 渝北区| 丰台区| 长沙市| 通城县| 吉木乃县| 延安市|