摘要: 最近自己搭项目,在jsp页面使用EL表达式就去网上找原因 总结下来就是动态web模块版本太低,我的是2.3 没法使用 下面是解决办法 一、修改web.xml(标红的两块,用的什么version就写什么,我用的2.5) <?xml version="1.0" encoding="UTF-8"?> <w 阅读全文
posted @ 2019-03-22 17:07 marvinn 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 最简单的两种写法,加或不加@RequestParam注解 ①@RequestMapping("/list")public String test(int userId) { return "list";} ②@RequestMapping("/list")public String test(@Re 阅读全文
posted @ 2019-03-22 11:12 marvinn 阅读(145) 评论(0) 推荐(0) 编辑