0

次の子モジュールを持つマルチモジュールmavenプロジェクトがあります

Tracker
|--Tracker-core
|--Tracker-dao
|  |---src/main/resource/spring-dao-config.xml
|
|--Tracker-services
|  |---src/main/resource/spring-service-config.xml
|
|--Tracker-web

Tracker-dao では、リソース パッケージに spring-context.xml があります。これにより、dao クラスがスキャンされ、他のデータソース構成が含まれます。

spring-dao-config.xml:

<?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.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

    <context:component-scan base-package="com.gits.tracker"></context:component-scan>

    <bean
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:/database.properties" />
    </bean>

    <import resource="classpath:hibernate-config.xml" />

    <!-- Declare a datasource that has pooling capabilities -->

    <bean id="transactionManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>


    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate4.HibernateTemplate">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <!-- An AnnotationSessionFactoryBean for loading Hibernate mappings from 
        annotated domain classes. -->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="annotatedClasses">
            <list>
                <value>com.gits.tracker.core.entity.Address</value>
                <value>com.gits.tracker.core.entity.Company</value>
                <value>com.gits.tracker.core.entity.Customer</value>
                <value>com.gits.tracker.core.entity.User</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <!-- <prop key="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory</prop> -->
            </props>
        </property>
    </bean>    

</beans>

dao レイヤーだけの Junit テストは問題なく動作しています。

Tracker-service では、この Tracker-core を依存関係として使用しました。トラッカー サービスで Junit を実行しているときに、アプリケーション コンテキストの読み込みに失敗し、名前に一致する少なくとも 1 つの Bean が見つからないというエラーが発生します。

spring-service-config.xml

<?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"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

    <!-- <import resource="classpath:spring-dao-config.xml"/> -->
    <context:component-scan base-package="com.gits.tracker.service.services"></context:component-scan>
</beans>

トラッカー サービスの Junit

問題はここにあります: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:spring-service-config.xml" })

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:spring-service-config.xml" })
public class TestUserService extends
        AbstractTransactionalJUnit4SpringContextTests {

    private static Logger logger;
    private static ApplicationContext ctx;
    private UserService userService;

    @BeforeClass
    public static void init() {
        logger = Logger.getLogger(User.class);
        if (logger.isDebugEnabled()) {
            logger.debug("IN DEBUG MODE");
        }
    }

    @Before
    public void localInit() {
        logger.info("*************EXECUTING LOCALINIT*************");
        ctx = new FileSystemXmlApplicationContext(
                "src/main/resources/spring-config.xml");
        userService = (UserService) ctx.getBean("userServiceImpl");

        // userDao.executeQuery("delete from User where id<>3");
        logger.info("*************DELETED ALL COMPANY FROM TABLE*************");
        logger.info("*************EXITING OUT OF LOCALINIT*************");
    }

    @AfterClass
    public static void stop() {
        logger.debug("TEST COMPLETED");
    }

    private UserServiceImpl loadUserService() {
        return (UserServiceImpl) ctx.getBean("userServiceImpl");
    }

    private UserDTO createTestUserDTO() {
        UserDTO dto = new UserDTO("manoj", "manojpass", "true");
        return dto;
    }

    @Test
    public void testCreateUser() {
        loadUserService();
        UserDTO dto = createTestUserDTO();
        Long id = userService.createUser(dto);
        dto.setId(id);
        UserDTO dto_1 = userService.getUserById(id);
        org.junit.Assert.assertEquals(dto.toString(), dto_1.toString());
    }    


    @Test
    public void findByCriteriaWithAlias() {
        loadUserService();
        UserDTO dto = createTestUserDTO();
        Long id = userService.createUser(dto);
        CriteriaWithAlias criteriaWithAlias = new CriteriaWithAlias();
        HashMap<String, String> alias = new HashMap<String, String>();
        List<Criterion> criterions = new ArrayList<Criterion>();
        Criterion criterion0 = Restrictions.eq("username", dto.getUsername());
        criterions.add(criterion0);
        criteriaWithAlias.setAlias(alias);
        criteriaWithAlias.setCriterions(criterions);

List<UserDTO> users = userService
                .findByCriteriaWithAlias(criteriaWithAlias);
for (UserDTO user : users) {
org.junit.Assert.assertFalse(user.getPassword().isEmpty());
org.junit.Assert.assertFalse(user.getId().toString().isEmpty());
org.junit.Assert.assertFalse(user.getUsername().isEmpty());
org.junit.Assert.assertFalse(user.getEnabled().isEmpty());
}
}

    @Test
    public void findByProjection() {
            loadUserService();
    UserDTO dto = createTestUserDTO();
    userService.createUser(dto);
    CriteriaWithAlias criteriaWithAlias = new CriteriaWithAlias();
    HashMap<String, String> alias = new HashMap<String, String>();
    HashMap<String, String> projections = new HashMap<String, String>();
    List<Criterion> criterions = new ArrayList<Criterion>();
    projections.put("username", "username");
    projections.put("enabled", "enabled");
    Criterion criterion0 = Restrictions.ne("username", "syed");
    Criterion criterion1 = Restrictions.eq("enabled", "true");
    criterions.add(criterion0);
    criterions.add(criterion1);
    criteriaWithAlias.setAlias(alias);
    criteriaWithAlias.setCriterions(criterions);
    criteriaWithAlias.setProjections(projections);

    List<UserDTO> users = userService
            .findByCriterionWithProjection(criteriaWithAlias);
    for (UserDTO user : users) {
        org.junit.Assert.assertNull(user.getPassword());
        org.junit.Assert.assertNull(user.getId());
        org.junit.Assert.assertFalse(user.getUsername().isEmpty());
        org.junit.Assert.assertFalse(user.getEnabled().isEmpty());
    }

}

また、tracker-service モジュールの spring-service-config に tracker-core の spring-dao-config をインポートしてみました。しかし、その時、spring-dao-config.xml ファイルが見つからないと言われました。

何が間違っているのか、何が欠けているのかを教えてください。これに対する解決策を提案してください。各モジュールの依存関係を独自のPOM.xmlに追加しましたが、すべてを親POM.xmlにまとめたわけではありません

4

1 に答える 1