博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mvc: 资源绑定视图解析器(不推荐)
阅读量:6245 次
发布时间:2019-06-22

本文共 2133 字,大约阅读时间需要 7 分钟。

spring mvc: 资源绑定视图解析器(不推荐)

不适合单控制器多方法访问,有知道的兄弟能否告知。

访问地址:

http://localhost:8080/guga2/hello/index

项目:guga2

包名:springresource

properties文件放在 /WEB-INF/class/下

 

 

 

本例配置文件web.xml, applicationContext.xml, springresource-servlet.xml, views.properties

web.xml

contextConfigLocation
/WEB-INF/applicationContext.xml
encodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
encodingFilter
/*
org.springframework.web.context.ContextLoaderListener
springresource
org.springframework.web.servlet.DispatcherServlet
1
springresource
/

  

applicactionContext.xml自动导入bean

  

springresource-servlet.xml引入properties文件

  

views.properties

hello.(class)=org.springframework.web.servlet.view.JstlViewhello.url=/WEB-INF/jsp/hello.jsp

  

HelloController.java

package springresource;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.ui.ModelMap;@Controllerpublic class HelloController {		@RequestMapping(value="/hello/index", method=RequestMethod.GET)	public String index(ModelMap model)	{		model.addAttribute("message", "hello index , Spring MVC资源绑定视图解析器!");		return "hello";	}			@RequestMapping(value="/hello/bate", method=RequestMethod.GET)	public String bate(ModelMap model)	{		model.addAttribute("message", "hello bate, Spring MVC资源绑定视图解析器!");		return "hello_bate";	}	}

  

jsp

<%@ page language="java" contentType="text/html; charset=utf-8"  pageEncoding="utf-8"%><%@ page isELIgnored="false" %>
hello indexhi,${message}

  

 

转载地址:http://aeoia.baihongyu.com/

你可能感兴趣的文章
Day03 - 挂载、nmcli、yum安装
查看>>
Linux下的qperf测量网络带宽和延迟
查看>>
wxPython 配置环境
查看>>
C的数据类型 关键字
查看>>
Hadoop 2.5.2 HDFS HA+YARN HA 应用配置
查看>>
tomcat远程调试
查看>>
APUE读书笔记-18终端输入输出-05终端选项标记
查看>>
Linux查看系统IO
查看>>
阅后即焚,Python 运维开发99速成
查看>>
Oracle正则表达式(二)
查看>>
oracle导入导出
查看>>
刘宇凡:360搜索来了,百度你怂了吗?
查看>>
windows通配符
查看>>
Linux学习之路-Linux-内部yum配置及hostname修改【11】---20171226
查看>>
详解CGI、FastCGI、PHP-CGI、PHP-FPM、Spawn-FCGI区别
查看>>
针对ASP.NET页面实时进行GZIP压缩优化的几款压缩模块的使用简介及应用测试!(附源码)...
查看>>
IDEA常用快捷键
查看>>
input 回车提交
查看>>
xp创建***拨号连接
查看>>
win下一些常用的工具软件及网管管理系统
查看>>