spring如何开启注解模式



      
      
      
      
      
      
      
		
		
	

在spring-servlet.xml中添加即可

然后,学习一个注解@autowired(自动装配)

@Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。 通过 @Autowired的使用来消除 set ,get方法。在使用@Autowired之前,我们对一个bean配置起属性时,是这用用的
   
通过这种方式来,配置比较繁琐,而且代码比较多。在Spring 2.5 引入了 @Autowired 注释。
例如GtNotesServiceImpl 实现类中需要引入GtNotesMapper 接口,那么就使用@Autowired可以自动注入GtNotesMapper 。
@Transactional
@Service("gtNotesService")
public class GtNotesServiceImpl implements GtNotesService{

    @Autowired
    private GtNotesMapper gtNotesMapper;
    
    @Override
    public PageView query(PageView pageView, GtNotes t) {
        // TODO Auto-generated method stub
        return null;
    }
}

 

出处:https://blog.csdn.net/gluawwa/article/details/52972700

你可能感兴趣的:(spring如何开启注解模式)