Spring 管理的 Bean 如使用 @Service @Component 管理的类在使用 @Resource @Autowired 注入时都是单例
    如果希望自动注入多例可在 Bean 上添加 @Scope("prototype") 注解。