SSM notes
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSM notes相关的知识,希望对你有一定的参考价值。
spring mvc中的@PathVariable是用来获得请求url中的动态参数的,十分方便,复习下: Java代码 收藏代码 @Controller public class TestController { @RequestMapping(value="/user/{userId}/roles/{roleId}",method = RequestMethod.GET) public String getLogin(@PathVariable("userId") String userId, @PathVariable("roleId") String roleId){ System.out.println("User Id : " + userId); System.out.println("Role Id : " + roleId); return "hello"; } @RequestMapping(value="/product/{productId}",method = RequestMethod.GET) public String getProduct(@PathVariable("productId") String productId){ System.out.println("Product Id : " + productId); return "hello"; } @RequestMapping(value="/javabeat/{regexp1:[a-z-]+}", method = RequestMethod.GET) public String getRegExp(@PathVariable("regexp1") String regexp1){ System.out.println("URI Part 1 : " + regexp1); return "hello"; } }
以上是关于SSM notes的主要内容,如果未能解决你的问题,请参考以下文章
SSM-MyBatis-05:Mybatis中别名,sql片段和模糊查询加getMapper
java.util.MissingResourceException: Can't find bundle for base name init, locale zh_CN问题的处理(代码片段