spring mvc 版本,怎么查
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc 版本,怎么查相关的知识,希望对你有一定的参考价值。
参考技术A看包名;3.2.6就是版本号
本回答被提问者和网友采纳spring mvc怎么用iframe?
我想用spring mvc做一个管理后台,模版我都是用iframe来做的,求高手指点怎么把action返回的数据显示在iframe的子页中?用的是什么技术?
iframe实际上就是定义的页面的整体展现形式,不关心具体内容的。举例:
<frameset rows="70,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="head.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frameset cols="193,*" frameborder="no" border="0" framespacing="0">
<frame src="left.html" scrolling="No" noresize="noresize" id="leftFrame" />
<frame src="main.html" name="mainFrame" id="mainFrame" />
</frameset>
</frameset>
在left页面中写上要点击的a / b,给加上超链接(<A href="1.asp" target="mainframe"></A><A href="2.asp" target="mainframe"></A>)。之后即可通过链接访问相关的页面了。 参考技术A <from action="a.do" target="iframeName">
......
......
....各种表单.
</from>
这样 action返回的数据就到iframe里了.本回答被提问者和网友采纳 参考技术B 不明白你为什么要强调的asp.net mvc的。追问
我用的是java 不是asp.net
以上是关于spring mvc 版本,怎么查的主要内容,如果未能解决你的问题,请参考以下文章
EasyUI + Spring MVC + hibernate实现增删改查导入导出
Spring MVC程序中怎么得到静态资源文件css,js,图片文件的路径问题