当前位置:首页 > 全部子站 > IT > 思科认证

Spring2.5注释驱动与基于注释的MVC

来源:长理培训发布时间:2017-12-19 16:31:35

 百度广告

  考试吧Java站整理收集

  Spring2.5
package com.tony.test;
private String name;
return"Foo Name is :" + this.name;
Setget
2 Bar.java BarStringadd.
publicclass Bar {
public String toStirng(){
}
}
package com.tony.test;
private Foo foo;
public String toString(){
}
}





5 Test.java TestSpringmain
import org.springframework.context.ApplicationContext;
ClassPathXmlApplicationContext;
publicstaticvoid main(String args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(locations);
system.out.println(main);
}
Main : [Foo Name is :Foo Bar Add is :Bar]
import org.springframework.beans.factory.annotation.Autowired;
@Autowired
@Autowired
public String toString(){
}
Spring




|||   2)Spring @Qualifier("foo1")
@Autowired
private Foo foo;
private Bar bar;
return"Main : [" + this.foo.toStirng() +" "+ this.bar.toStirng() + "]";
}





Test.java:
Springfoo1main







publicclass Foo {
public String toStirng(){
}
@Component,Bean
@Component("main")
@Autowired
@Autowired
……
8.4.2 Spring2.5Spring 2.5也为 Spring MVC引入了注释驱动功能。现在我们无须让Controller继承任何接口,无需在XML配置文件中定义请求和Controller的映射关系,仅仅使用注释就可以让一个POJO具有Controller的绝大部分功能 -- Spring MVC框架的易用性得到了进一步的增强。
由于Spring MVC的Controller必须事先是一个Bean,所以 @Controller注解是不可缺少的。请看下面的代码清单
@Controller //Controller
@Autowired
@RequestMapping("/list.do") //URL
String list = fooService.getAll();
return list;
@RequestMapping("/del.do") //URL
fooService.doDel(request.getParameter("id"));
}
2
@RequestMapping("/doFoo.do")// URL
@Autowired
//listURL /doFoo.do?mode=list
public String list() {
system.out.println(list);
}
@RequestMapping(params = "mode=del")
HttpServletResponse response) {
}
2让请求处理方法处理特定的HTTP请求如POST类型的,请看下面的代码清单。
@Controller
publicclass FooController {
@RequestMapping(params = "mode=submit",
public String submit(HttpServletRequest request,
system.out.println(" submit .");
}
submitPOSTURL
代码清单4
@RequestMapping("/doFoo.do")// URL
@Autowired
//delURL /doFoo.do?mode=del&id=10
public String del(int id) {
return"success";
}
Spring del() id del() id del() String Spring ModelAndView Spring MVC 4
@Controller
publicclass FooController {
private FooService fooService;
@RequestMapping(params = "mode=del")
fooService.doDel(id);
}
5 del() id @RequestParam("id") id URL

责编:罗莉

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)
返回顶部