您的位置:首页 > 编程语言 > Java开发

Spring注解@Component、@Repository、@Service、@Controller区别

2016-09-30 10:29 381 查看
很长时间没做web项目都把以前学的那点框架知识忘光了,今天把以前做的一个项目翻出来看一下发现用·@Component标记一个组件,而网上有的用@Service标记组件,我晕就查了一下资料:spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。虽然目前这3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用上述注解对分层中的类进行注释。@Service用于标注业务层组件(
服务(注入dao)
)@Controller用于标注控制层组件(如struts中的action
控制器(注入服务)
)@Repository用于标注数据访问组件,即DAO组件(
(实现dao访问)
)@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。(
把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>
  @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。 下面写这个是引入component的扫描组件 <context:component-scan base-package=”com.mmnc”>    
[java]view plaincopy@Service  public class VentorServiceImpl implements iVentorService {     }  @Repository  public class VentorDaoImpl implements iVentorDao {   }   在一个稍大的项目中,如果组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。Spring2.5为我们引入了组件自动扫描机制,他在类路径下寻找标注了上述注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的。要使用自动扫描机制,我们需要打开以下配置信息:代码[html]view plaincopy<?xml version="1.0" encoding="UTF-8" ?>   <beans xmlns="http://www.springframework.org/schema/beans"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xmlns:context="http://www.springframework.org/schema/context"      xsi:schemaLocation="http://www.springframework.org/schema/beans                  http://www.springframework.org/schema/beans/spring-beans-2.5.xsd          http://www.springframework.org/schema/context          http://www.springframework.org/schema/context/spring-context-2.5.xsd">            <context:component-scan base-package=”com.eric.spring”>     </beans>   1.component-scan标签默认情况下自动扫描指定路径下的包(含所有子包),将带有@Component、@Repository、@Service、@Controller标签的类自动注册到spring容器。对标记了 Spring's @Required、@Autowired、JSR250's @PostConstruct、@PreDestroy、@Resource、JAX-WS's @WebServiceRef、EJB3's @EJB、JPA's @PersistenceContext、@PersistenceUnit等注解的类进行对应的操作使注解生效(包含了annotation-config标签的作用)。 getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service(“aaaaa”)这样来指定。这种bean默认是“singleton”的,如果想改变,可以使用@Scope(“prototype”)来改变。可以使用以下方式指定初始化方法和销毁方法:[java]view plaincopy@PostConstruct  public void init() {   }   @PreDestroy  public void destory() {   }    注入方式:把DAO实现类注入到action的service接口(注意不要是service的实现类)中,注入时不要new 这个注入的类,因为spring会自动注入,如果手动再new的话会出现错误,然后属性加上@Autowired后不需要getter()和setter()方法,Spring也会自动注入。  在接口前面标上@Autowired注释使得接口可以被容器注入,如:[java]view plaincopy@Autowired  @Qualifier("chinese")  private Man man;   当接口存在两个实现类的时候必须使用@Qualifier指定注入哪个实现类,否则可以省略,只写@Autowired。以下是@Component  注释使用实例:import java.util.Map;import java.util.concurrent.ConcurrentHashMap;import javax.annotation.PostConstruct;import javax.annotation.PreDestroy;import org.springframework.stereotype.Component;import cn.ticai.ledcms.web.admin.data.UserSession;@Componentpublic class SessionManager {    /**     * key : token, value : user session     */    private Map<String, UserSession> cache = new ConcurrentHashMap<String, UserSession>();    private Thread daemonThread;    public UserSession getSession(String token) {        return cache.get(token);    }        public void setSession(String token, UserSession session) {        cache.put(token, session);    }        @PostConstruct    public void init() {//创建并且启动线程        daemonThread = new Thread(new CleanupSessionTask());        daemonThread.start();           }        @PreDestroy    public void destroy() {//销毁线程        daemonThread.interrupt();    }        class CleanupSessionTask implements Runnable {        @Override        public void run() {            while(!Thread.interrupted()) {                //获取MAP集里面的所有信息,然后遍历所有信息,判断该用户时候超过二十分钟,如果超过,则把该用户从MAP里面摘除。                UserSession[] sessions = cache.values().toArray(new UserSession[0]);                for(int i = 0; i < sessions.length; i++) {                    long interval = System.currentTimeMillis() - sessions[i].getLastAccessTime().getTime();                    if(interval > 20 * 60 * 1000) {                        cache.remove(sessions[i].getToken());                    }                }//线程睡眠一分钟                               try {                    Thread.sleep(60*1000);                } catch (InterruptedException e) {                    break;                }            }        }            }}import java.util.Date;import java.util.HashMap;import java.util.Map;/** * @author Bean * */public class UserSession {    public final static String TOKEN = "token";    private long userId;    private String token;    private String username;    private Date loginTime;    private Date lastAccessTime;    private int random;        private Map<String, Object> exts = new HashMap<String, Object>();        /**     * @return the id     */    public long getUserId() {        return userId;    }    /**     * @param id     *            the id to set     */    public void setUserId(long userId) {        this.userId = userId;    }    /**     * @return the username     */    public String getUsername() {        return username;    }    /**     * @param username     *            the username to set     */    public void setUsername(String username) {        this.username = username;    }    /**     * @return the loginTime     */    public Date getLoginTime() {        return loginTime;    }    /**     * @param loginTime     *            the loginTime to set     */    public void setLoginTime(Date loginTime) {        this.loginTime = loginTime;    }    /**     * @return the lastAccessTime     */    public Date getLastAccessTime() {        return lastAccessTime;    }    /**     * @param lastAccessTime     *            the lastAccessTime to set     */    public void setLastAccessTime(Date lastAccessTime) {        this.lastAccessTime = lastAccessTime;    }    /**     * @return the token     */    public String getToken() {        return token;    }    /**     * @param token the token to set     */    public void setToken(String token) {        this.token = token;    }    public void putValue(String key, Object value) {        exts.put(key, value);    }        public Object getValue(String key) {        return exts.get(key);    }    /**     * @return the random     */    public int getRandom() {        return random;    }    /**     * @param random the random to set     */    public void setRandom(int random) {        this.random = random;    }    } 原博文地址: http://blog.csdn.net/zhang854429783/article/details/6785574 http://crabboy.iteye.com/blog/339840
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  spring 注释 框架 java