Package ru.org.linux.comment

Source Code of ru.org.linux.comment.CommentDaoIntegrationTestConfiguration

package ru.org.linux.comment;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import ru.org.linux.spring.dao.DeleteInfoDao;

@Configuration
@ImportResource("classpath:database.xml")
public class CommentDaoIntegrationTestConfiguration {
  @Bean
  public CommentDao commentDao() {
    return new CommentDao();
  }

  @Bean
  public DeleteInfoDao deleteInfoDao() {
    return new DeleteInfoDao();
  }
}
TOP

Related Classes of ru.org.linux.comment.CommentDaoIntegrationTestConfiguration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.