java怎么访问视图_springmvc-直接访问视图文件
場景
有時候想直接訪問視圖的文件,不需要經過控制器,這時候可以配置spring.mvc文件實現。
配置<?xml ?version="1.0"?encoding="UTF-8"?>
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">
控制器: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";
}
}
視圖:
pageEncoding="UTF-8"%>
html>
Hello?World?!
經過控制器
直接訪問視圖文件
總結
以上是生活随笔為你收集整理的java怎么访问视图_springmvc-直接访问视图文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: vc为啥要更新java_Java9被无情
- 下一篇: mysql server 5.6root