场景
有时候想直接访问视图的文件,不需要经过控制器,这时候可以配置spring.mvc文件实现。
配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 配置自动扫描的包 --> <context:component-scan base-package="com.shuoeasy.springmvc"></context:component-scan> <!-- 配置视图解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 前缀 --> <property name="prefix" value="/WEB-INF/views/"></property> <!-- 文件名 --> <property name="suffix" value=".jsp"></property> </bean> <!-- 直接访问视图start --> <!-- 可以直接转发到对应的页面,而无需经过Handler的方法 路径:http://localhost:8080/lx12_JstlView/show --> <mvc:view-controller path="/home2/show2" view-name="home_index"/> <!-- 加上这个配置,不管是从控制器还是直接请求视图都能正常访问。否则只能访问视图,不能从控制器访问 --> <mvc:annotation-driven></mvc:annotation-driven> <!-- 直接访问视图end --> </beans>
控制器:
package com.shuoeasy.springmvc; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @RequestMapping("/home") @Controller public class Home { /** * 路径 : home/show */ @RequestMapping("/show") public String showPage(){ System.out.println("接收到页面请求"); return "home_index"; } }
视图:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h2>Hello World !</h2> <a href="home/show" target="_blank">经过控制器</a> <br/> <a href="home2/show2" target="_blank">直接访问视图文件</a> </body> </html>