前台页面带着areaid参数请求更新此id的数据,跳转到更新数据页面时需要在更新页面先填充上原来的数据。用request.setAttribute和request.getAttribute的搭配使用来解决此问题。
@RequestMapping(value="area_updateInput.action")
public String areaUpdateInput(int areaId...
分类:
其他好文 时间:
2015-03-16 17:50:33
阅读次数:
102
@RequestMapping(value = "downFile") public void downFile(HttpServletResponse response, String name, HttpServletRequest request) { ServletContext sc...
分类:
编程语言 时间:
2015-03-15 13:47:54
阅读次数:
145
11.SpringMVC接收参数,冲突。class LoanBean { private Double amount;}class LoanInfo{ piavate Money amount;}@RequestMapping("/doadd")public void doAdd(LoanInfo loanInfo, LoanBean loanBean);json请求发过来,接收amount就...
分类:
其他好文 时间:
2015-03-13 22:25:54
阅读次数:
317
今天遇到了一个奇怪的问题:jsp代码如下:数据对比${name}在controller里面,有赋值: @RequestMapping(value = "/index.do") public String index(ModelMap modelMap) { modelMap...
分类:
编程语言 时间:
2015-03-13 18:10:41
阅读次数:
161
首先填写可外网访问的url 是如下方法 @RequestMapping(value = "coreJoin", method = RequestMethod.GET) public void coreJoinGet(HttpServletRequest request, HttpServletRes...
分类:
微信 时间:
2015-03-13 12:24:18
阅读次数:
251
接着上一讲,介绍如何查询单个数据,此处介绍show()方法的实现。显示单条数据需要使用Users对象中的一个字段作为入参来进行对象查询,将查询出来的数据放在Model中,并且将model中的user对象返回前台即可。对应在controller类中的代码如下所示:@RequestMapping(v.....
分类:
编程语言 时间:
2015-03-10 01:21:40
阅读次数:
164
删除功能实现,对应controller类中的代码如下所示:@RequestMapping(value="/{username}/delete",method=RequestMethod.GET)public String delete(@PathVariable String username).....
分类:
编程语言 时间:
2015-03-10 01:21:22
阅读次数:
163
@RequestMapping("/pluginDownload") public void pluginDownload(HttpServletResponse response) throws FileNotFoundException { // 下载本地文件 ...
分类:
编程语言 时间:
2015-03-09 14:17:46
阅读次数:
148
controller层 1 @RequestMapping(value="/search") 2 @ResponseBody 3 public String search(HttpServletRequest request,int pageIndex,int size) { 4 ...
分类:
编程语言 时间:
2015-03-09 12:16:29
阅读次数:
181
1、需要commons-fileupload.jarcommons-io.jar2、需要在springmvc.xml中 配置存放静态资源的路径,对图片等静态资源放行 3、图片上传页面 4、后台页面@RequestMapping(...
分类:
编程语言 时间:
2015-03-06 23:33:35
阅读次数:
224