91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

@Autowire注解怎么在Spring中使用

發布時間:2021-03-31 17:28:53 來源:億速云 閱讀:165 作者:Leah 欄目:編程語言

@Autowire注解怎么在Spring中使用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一 配置

<?xml version="1.0" encoding="GBK"?>
<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-4.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context-4.0.xsd">
   <context:component-scan
      base-package="org.crazyit.app.service,org.crazyit.app.dao"/>   
</beans>

二 dao接口

BaseDao

package org.crazyit.app.dao;
public interface BaseDao<T>
{
   void save(T e);
}

ItemDao

package org.crazyit.app.dao;
import org.crazyit.app.domain.*;
public interface ItemDao extends BaseDao<Item>
{
}

UserDao

package org.crazyit.app.dao;
import org.crazyit.app.domain.*;
public interface UserDao extends BaseDao<User>
{
}

三 dao實現類

BaseDaoImpl

package org.crazyit.app.dao.impl;
import org.crazyit.app.dao.*;
public class BaseDaoImpl<T> implements BaseDao<T>
{
   public void save(T e)
   {
      System.out.println("程序保存對象:" + e);
   }
}

ItemDaoImpl

package org.crazyit.app.dao.impl;
import org.springframework.stereotype.*;
import org.crazyit.app.dao.*;
import org.crazyit.app.domain.*;
@Component("itemDao")
public class ItemDaoImpl extends BaseDaoImpl<Item>
  implements ItemDao
{
}

UserDaoImpl

package org.crazyit.app.dao.impl;
import org.springframework.stereotype.*;
import org.crazyit.app.dao.*;
import org.crazyit.app.domain.*;
@Component("userDao")
public class UserDaoImpl extends BaseDaoImpl<User>
  implements UserDao
{
}

四 Bean

Item

package org.crazyit.app.domain;
public class Item
{
}

User

package org.crazyit.app.domain;
public class User
{
}

五 service接口

BaseService

package org.crazyit.app.service;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.service.*;
public interface BaseService<T>
{
  void addEntity(T entity);
}

ItemService

package org.crazyit.app.service;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.service.*;
import org.crazyit.app.domain.*;
@Component
public interface ItemService extends BaseService<Item>
{
}

UserService

package org.crazyit.app.service;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.service.*;
import org.crazyit.app.domain.*;
@Component
public interface UserService extends BaseService<User>
{
}

六 Service實現類

BaseServiceImpl

package org.crazyit.app.service.impl;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.dao.*;
import org.crazyit.app.service.*;
public class BaseServiceImpl<T> implements BaseService<T>
{
  @Autowired
  private BaseDao<T> dao;
  public void addEntity(T entity)
  {
    System.out.println("調用" + dao
      + "保存實體:" + entity);
  }
}

ItemServiceImpl

package org.crazyit.app.service.impl;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.service.*;
import org.crazyit.app.domain.*;
@Component("itemService")
public class ItemServiceImpl extends BaseServiceImpl<Item>
  implements ItemService
{
}

UserServiceImpl

package org.crazyit.app.service.impl;
import org.springframework.stereotype.*;
import org.springframework.beans.factory.annotation.*;
import org.crazyit.app.service.*;
import org.crazyit.app.domain.*;
@Component("userService")
public class UserServiceImpl extends BaseServiceImpl<User>
  implements UserService
{
}

七 測試類

package lee;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.crazyit.app.service.*;
import org.crazyit.app.domain.*;
public class BeanTest
{
  public static void main(String[] args)throws Exception
  {
    // 創建Spring容器
    ApplicationContext ctx = new
      ClassPathXmlApplicationContext("beans.xml");
    UserService us = ctx.getBean("userService", UserService.class);
    us.addEntity(new User());
    ItemService is = ctx.getBean("itemService", ItemService.class);
    is.addEntity(new Item());
  }
}

八 測試

調用org.crazyit.app.dao.impl.UserDaoImpl@b7dd107保存實體:org.crazyit.app.domain.User@42eca56e調用org.crazyit.app.dao.impl.ItemDaoImpl@52f759d7保存實體:org.crazyit.app.domain.Item@7cbd213e

關于@Autowire注解怎么在Spring中使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新乡县| 噶尔县| 普洱| 定州市| 桂平市| 嘉禾县| 崇信县| 枝江市| 上杭县| 江都市| 永顺县| 建湖县| 呼图壁县| 日土县| 万全县| 临高县| 南丰县| 论坛| 建瓯市| 茂名市| 桑日县| 乌拉特中旗| 舞钢市| 衡山县| 永兴县| 霍山县| 阳山县| 岑溪市| 桐城市| 阿鲁科尔沁旗| 蓬溪县| 竹山县| 马鞍山市| 绍兴市| 民丰县| 宜宾县| 曲阜市| 高清| 临颍县| 贡山| 西乌珠穆沁旗|