创作目的:
避免我们在面试或者写项目时的尴尬
开始干!
1,@Controller注解
用于标注控制层组件
如果@Controller不指定其value【@Controller】,则默认的bean名字为这个类的类名首字母小写,如果指定value【@Controller(value="UserAction")】或者【@Controller("UserAction")】,则使用value作为bean的名字。
@Controller
@RequestMapping("/medicine")
public class MedicineController {
ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext-jdbc.xml");
DoctorService ds =(DoctorService) context.getBean("doctorService");
MedicineService ms =(MedicineService) context.getBean("medicineService");
@RequestMapping(value="/doctor",method= RequestMethod.GET)
2,@Resource
默认按照byName方式进行bean匹配,当找不到与名称匹配的bean才会按类型装配,由J2EE提供,需要导入包javax.annotation.Resource,@Resource的作用相当于@Autowired,只不过@Autowired按照byType自动注入。
(1)、@Resource后面没有任何内容,默认通过name属性去匹配bean,找不到再按type去匹配
(2)、指定了name或者type则根据指定的类型去匹配bean
(3)、指定了name和type则根据指定的name和type去匹配bean,任何一个不匹配都将报错
3,@Service注解
用于标注业务层组件。
@Service(“userService”)注解是告诉Spring,当Spring要创建UserServiceImpl的的实例时&#