• Spring一些注解


    spring @component的作用详细介绍

    1、@controller 控制器(注入服务)

    2、@service 服务(注入dao)

    3、@repository dao(实现dao访问)

    4、@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>)

       @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。 

    下面写这个是引入component的扫描组件 

    <context:component-scan base-package=”com.mmnc”> 

     其中base-package为需要扫描的包(含所有子包) 

    1、@Service用于标注业务层组件 
    2、@Controller用于标注控制层组件(如struts中的action) 
    3、@Repository用于标注数据访问组件,即DAO组件. 
    4、@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。    

    复制代码
    @Service
    public class UserServiceImpl implements UserService {
    
    } 
    
    @Repository
    public class UserDaoImpl implements UserDao {
    
    } 
    复制代码

    getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service(“***”)这样来指定,这种bean默认是单例的,如果想改变,可以使用

    @Service(“beanName”)
    @Scope(“prototype”)
    public class User {
    
    } 

    来改变。可以使用以下方式指定初始化方法和销毁方法(方法名任意):

    @PostConstruct
    public void init() { }
    当你的才华还撑不起你的野心时
    那你就应该静下心来学习
    当你的能力还驾驭不了你的目标时
    那就应该沉下心来历练
  • 相关阅读:
    jQuery——能够编辑的表格
    最简单的Windows程序
    数据库分页查询
    Srvctl命令具体解释(10g)
    AT3912 Antennas on Tree
    使用GenericServlet实例
    Servlet接口、GenericServlet类、HttpServlet类
    Servlet简介
    MVC
    为JSP写的一套核心标签
  • 原文地址:https://www.cnblogs.com/yang-xiansen/p/11052324.html
Copyright © 2020-2023  润新知