gpt4 book ai didi

java - DAO 和服务层的设计模式

转载 作者:太空宇宙 更新时间:2023-11-04 07:46:43 25 4
gpt4 key购买 nike

我对 DAO 和服务层模式有疑问,我正在将 Spring 3 和 Hibernate 4 用于小型应用程序。

关于我的申请的简短描述

我有一个小型应用程序,其中员工和部门数据以 JSF 表单显示。

部门数据使用主数据表和相关数据表以表格形式显示员工数据也使用数据表以表格形式显示,这是详细信息(主详细信息)场景。单击主数据表中的按钮后,将显示一个弹出窗口,可以在其中输入有关部门的详细信息,并且数据保留在数据库表中(与删除和更新的情况相同)

我的设计如下

DAO 层

public interface GenericDAO<T> {
public void create(T entity);
public void update(T entity);
public void delete(T entity);
}

public interface DepartmentDAO extends GenericDAO<Department>
--methods for getting Department list and others
public void findDepartment(DepartmentData data);
-----

public interface EmployeeDAO extends GenericDAO<Employee>
--methods for getting Employeelist and others
---

服务层

public interface DepartmentService {
public void findDepartment(DepartmentData data);
-- other methods
}

@Transactional
@Named
public class DepartmentServiceImpl implements DepartmentService {

@Inject
DepartmentDAO departmentDAO;

-- implementation of methods
}

public interface EmployeeService {
public void findEmployees(EmployeeData data);
-- other methods
}

@Transactional
@Named
public class EmployeeServiceImpl implements EmployeeService {

@Inject
EmployeeDAO employeeDAO;

-- implementation of methods
}

我的问题是,我应该为部门和员工使用一个服务接口(interface)或类,就像我为 JSF 表单使用一个 ManagedBean 一样,还是应该为部门和员工使用单独的接口(interface)和类?将所有DAO方法都放在一个带有@Transactional的服务实现类中,在数据库事务时会不会有性能问题?是否建议使用类似于 GenericDAO 的通用服务接口(interface)?

非常感谢您提供任何帮助吗?

更新1

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd"
>
<context:component-scan base-package="net.test" />
<!-- Data Source Declaration -->
<bean id="DataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/myDS"/>
</bean>
<bean
class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
<bean class="org.springframework.orm.hibernate4.HibernateExceptionTranslator" />
<!-- JPA Entity Manager Factory -->
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="DataSource" />
<property name="packagesToScan" value="net.test.entity" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="showSql" value="true" />
<property name="generateDdl" value="false" />
<property name="databasePlatform" value="${jdbc.dialectClass}" />
</bean>
</property>
</bean>
<bean id="defaultLobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" />
<!-- Session Factory Declaration -->
<bean id="SessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="DataSource" />
<property name="annotatedClasses">
<list>
<value>net.test.entity.Employee</value>
<value>net.test.entity.Department</value>

</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory
</prop>
</props>
</property>
</bean>
<tx:annotation-driven transaction-manager="txManager" />
<tx:annotation-driven transaction-manager="transactionManager" />
<bean id="txManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="SessionFactory" />
</bean>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<!-- <tx:annotation-driven transaction-manager="txManager"/> -->
<context:annotation-config />
<bean id="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService">
<property name="statisticsEnabled" value="true" />
<property name="sessionFactory" value="#{entityManagerFactory.sessionFactory}" />
</bean>
<bean name="ehCacheManagerMBean"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" />
<bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean">
<property name="locateExistingServerIfPossible" value="true" />
</bean>
<bean id="jmxExporter" class="org.springframework.jmx.export.MBeanExporter"
lazy-init="false">
<property name="server" ref="mbeanServer" />
<property name="registrationBehaviorName" value="REGISTRATION_REPLACE_EXISTING" />
<property name="beans">
<map>
<entry key="SpringBeans:name=hibernateStatisticsMBean"
value-ref="hibernateStatisticsMBean" />
<entry key="SpringBeans:name=ehCacheManagerMBean" value-ref="ehCacheManagerMBean" />
</map>
</property>
</bean>
</beans>

最佳答案

要真正回答这个问题,我们需要有关如何配置 @Transactional 语义的详细信息。例如,每个 DAO 最终会在单独的事务中运行,还是会在 Java 级别急切地连接在一起而在数据库级别延迟地连接在一起等等。

假设“通用”配置只有一个数据库,并且当服务加入共享请求级事务时,连接会被延迟重用;无论您选择一项还是两项服务,我都不会担心。

从性能的角度来看,对数据库的往返次数、数据库请求的工作负载以及事务在数据库级别保存的时间会产生很大的影响。让一两个 Java 对象加入一个 Java 级事务,该事务可能受也可能不受数据库连接(更不用说事务)支持,此时不会使性能数字相形见绌。您可能会发现序列化多个单独请求会产生延迟,在这种情况下,某些查询可能需要组合、批处理或缓存。最好通过单个 DAO 来完成;然而,只有当您遇到可测量的性能问题时才执行此操作。

团队大会和沟通设计/领域模型的意图在这里将变得更加重要。因此,我认为您是最适合回答您自己的问题的人,即是否选择一项或两项服务。

关于java - DAO 和服务层的设计模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15185705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com