码迷,mamicode.com
首页 >  
搜索关键字:springmvc freemaker    ( 10744个结果
SpringMVC学习一:SpringMVC的配置
SpringMVC的配置主要分为两部分:1、xml文件配置2、注解的配置SpringMVC配置的步骤如下:1、在将SpringMVC的jar包导入到web项目中后,先配置web.xml 文件。配置分发器使得请求通过Spring来控制分发 springMVC org.springf...
分类:编程语言   时间:2014-06-28 15:03:07    阅读次数:277
【转载】Spring中的applicationContext.xml与SpringMVC的xxx-servlet.xml的区别
一直搞不明白两者的区别。 如果使用了SpringMVC,事实上,bean的配置完全可以在xxx-servlet.xml中进行配置。为什么需要applicationContext.xml?一定必须? 一、 因为直接使用了SpringMVC,所以之前一直不明白xxx-servlet.xml和applic...
分类:移动开发   时间:2014-06-27 21:20:59    阅读次数:257
【转载】Spring中DispatcherServlet与ContextLoaderListener的区别
昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: DispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath...
分类:编程语言   时间:2014-06-27 20:50:28    阅读次数:170
java学习资料
原文地址:http://www.cnblogs.com/dennisit/p/3184225.html.北京圣思Java培训教学视频(资源共享网)2.Lucene/WebService/SVN/Ant/SpringMVC视频(学习资料库网)3.JUnit和Ant视频教程(VeryCD社区)4.《张孝...
分类:编程语言   时间:2014-06-25 22:13:12    阅读次数:518
springmvc 中model中放入枚举类型
我们直接看例子: Map mallMap = new HashMap(); mallMap.put(MallStatus.SELFMALL.toString(), MallStatus.SELFMALL.getValue()); mallMap.put(MallStatus.DELEGATIONMALL.toString(), MallStatus.DELEGATIONMALL.getV...
分类:编程语言   时间:2014-06-25 19:59:55    阅读次数:207
mybatis配置文件xxxx.xml中缺失返回类型的后果
下面是mybatis配置文件xxxx.xml缺失resultMap的错误: 严重: Servlet.service() for servlet [SpringMVC] in context with path [/ZHDM] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyB...
分类:其他好文   时间:2014-06-25 07:35:36    阅读次数:261
谁能提供一份用springmvc+hibernate+jstl写的完整用户注册,登录demo呢
谁能提供一份用springmvc+hibernate+jstl写的完整用户注册,登录demo呢 http://www.zuidaima.com/share/1550463226088448.htm...
分类:编程语言   时间:2014-06-22 19:11:18    阅读次数:224
springMVC中跳转问题
在使用SpringMVC时遇到了这个跳转的问题很头疼。现在总结出来,对以后的开发有所帮助。、1、可以采用ModelAndView:@RequestMapping("test1")public ModelAndView test(){ ModelAndView view = new Mode...
分类:编程语言   时间:2014-06-21 15:55:53    阅读次数:255
SpringMVC学习系列(3) 之 URL请求到Action的映射规则
原文地址http://www.cnblogs.com/liukemng/p/3726897.html在系列(2)中我们展示了一个简单的get请求,并返回了一个简单的helloworld页面。本篇我们来学习如何来配置一个action的url映射规则。在系列(2)中我们在HelloWorldContro...
分类:编程语言   时间:2014-06-20 19:51:59    阅读次数:340
JAVA WEB传输出错
最近使用Springmvc,GET传输参数的时候,经常出错误,下面介绍添加一个Filter的方法,可以解决这个问题。既支持POST方式也支持GET方式。首先写一个Filterpackage com.qunar.filter;import java.io.IOException;import java...
分类:编程语言   时间:2014-06-20 14:59:50    阅读次数:248
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!