springmvc
dengyulong
我是一个很真诚,踏实的人,也喜欢多交朋友.......................................................................................................................................................................
展开
-
springmvc环境配置
1.web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xm原创 2012-05-29 09:43:46 · 73 阅读 · 0 评论 -
springmvc测试1
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframe...原创 2012-05-29 09:45:37 · 75 阅读 · 0 评论 -
springmvc测试2
@Controller @RequestMapping("/hello") public class TestController3 { @RequestMapping //如果访问路径是/hello, 就调用此方法 public String toIndex(){ return "index"; } @RequestMapping("/index") ...原创 2012-05-29 09:46:04 · 92 阅读 · 0 评论