Tagged Questions
DAO - Data Access Objects
38
votes
9answers
22k views
Spring @Transactional Annotation Best Practice
We are currently discussing the Best Practice for placing the @Transactional annotations in our code.
Do you place the @Transactional in the DAO classes and/or their methods or is it better to ...
24
votes
2answers
22k views
Enumerations in Hibernate
It is often useful to have a field in a DAO whose value comes from a Java enumeration. A typical example is a login DAO where you usually have a field that characterises the user as "NORMAL" or ...
21
votes
1answer
947 views
handling GWT RequestFactory server error responses
I have a newly coded GWT/GAE app that uses RequestFactory and Editors on the client and a custom Objectify DAO Service on the back.
The flush() then persist() paths work fine on success.
Client side ...
16
votes
3answers
2k views
I found JPA, or alike, don't encourage DAO pattern
I found JPA, or alike, don't encourage DAO pattern. I don't know, but I feel like that, especially with server managed JTA managers.
After adequate hands-on using DAO pattern, I started designing JPA ...
14
votes
5answers
4k views
DAO and Service layers (JPA/Hibernate + Spring)
I'm designing a new app based on JPA/Hibernate, Spring and Wicket. The distinction between the DAO and Service layers isn't that clear to me though. According to Wikipedia, DAO is
an object that ...
13
votes
7answers
3k views
Why put a DAO layer over a persistence layer (like JDO or Hibernate)
Data Access Objects (DAOs) are a common design pattern, and recommended by Sun. But the earliest examples of Java DAOs interacted directly with relational databases -- they were, in essence, doing ...
11
votes
1answer
422 views
How to implement DAO in Scala?
I would like to implement DAO in Scala as follows:
trait DAO[PK,-T,-Q] {
// T is a "value object", PK is a primary key, and Q is query parameters.
def create(t:T):Unit
def update(t:T):Unit
...
10
votes
6answers
751 views
Recommended structure for high traffic website
I'm rewriting a big website, that needs very solid architecture, here are my few questions, and pardon me for mixing apples and oranges and probably kiwi too:) I did a lot of research and ended up ...
9
votes
4answers
243 views
Correct handling of return data
I have a question related to correct handling of returns of the DAO library I'm writing for one project. This library probably is going to be used by another people and I want to do it correctly. So I ...
9
votes
7answers
2k views
Pros and Cons of the use of DAO pattern
As I mention, I'm interested to know what do you (as experienced developers) thinks about the use of DAO pattern, specifically within a Web Application. If possible what advantages have you found, or ...
7
votes
1answer
645 views
Writing large number of records (bulk insert) to Access in .NET/C#
What is the best way to perform bulk inserts into an MS Access database from .NET? Using ADO.NET, it is taking way over an hour to write out a large dataset.
Note that my original post, before I ...
7
votes
2answers
392 views
DAO pattern and the Open-Closed Principle
I've seen and worked with a lot of older, JDBC-based DAO code that usually start out with CRUD methods. My question relates specifically to the retrieval methods, or 'finders'. Typically what I find ...
7
votes
6answers
393 views
What unit test to write for a class using generics in Java?
Taking the very specific example of the JpaDao class defined in this article:
public abstract class JpaDao<K, E> implements Dao<K, E> {
protected Class<E> entityClass;
...
7
votes
6answers
3k views
DAO pattern - where do transactions fit in?
So I've got this generic DAO thing going on and at face value it appears to be ok. It's basically modeled after the CaveatEmptor sample application from the Hibernate guys.
On top of that I have a ...
6
votes
2answers
410 views
dao pattern and relations
I'm working with DAO pattern in PHP. I understand the benefits that you get from separating your model this way, but what I don't understand is how are you supposed to build DAOs and VOs when your ...
6
votes
3answers
2k views
DAO vs ORM(hibernate) pattern
i read in some articles DAO is not mandatory with hibernate and its implementation is by "it depends", in other words, we can choose between ORM vs DAO pattern.
Ok, let's assume that i don't want use ...
6
votes
1answer
2k views
Java EE Architecture - Are DAO's still recommended when using an ORM like JPA 2?
If I'm using an ORM like JPA2 - where I have my entities that are mapped to my database, should I still be using a DAO? It seems like a lot more overhead.
For example, I would need to maintain three ...
6
votes
3answers
6k views
JPA - FindByExample
Does anyone have a good example for how to do a findByExample in JPA that will work within a generic DAO via reflection for any entity type? I know I can do it via my provider (Hibernate), but I ...
6
votes
1answer
12k views
Spring + Hibernate : a different object with the same identifier value was already associated with the session
Greeting ,
In my non-web application(using Spring,Hibernate), I parse a CSV file and populate db using following method.
handleRow() is called everytime a new raw is read from CSV file.
My domain ...
6
votes
1answer
7k views
JPA @VERSION how to use it?
@Entity
public class Person {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
private int salary;
@Version
private long version;
// ...getters and ...
6
votes
2answers
18k views
Automatic Hibernate Transaction Management with Spring?
How far does the spring framework go with transaction handling? My reading of the book "Spring In Action" suggestions with its examples that you create DAO methods that don't worry about Session and ...
5
votes
5answers
325 views
Linq to Entities - 3-tier Architecture
In the past few months I've learned alot about Linq-To-Entities and the 3-tier architecture with a DAO/DAL/Repository. Now I've a few things in my mind that keeps bugging me. I've those three ...
5
votes
3answers
994 views
Is the DAO Pattern Widely Used in .NET?
Is the DAO—Data Access Object—a commonly used pattern in .NET? I've always used DAOs as a way to provide access to my data layer. For example I might have a thin interface over my EntityFramework ...
5
votes
3answers
5k views
Single DAO & generic CRUD methods (JPA/Hibernate + Spring)
Following my previous question, DAO and Service layers (JPA/Hibernate + Spring), I decided to use just a single DAO for my data layer (at least at the beginning) in an application using JPA/Hibernate, ...
5
votes
6answers
760 views
DAO methods and synchronized
The following are methods I currently have in an Abstract DAO class. If there are concurrent calls, are they safe as they are or should synchronization be used? I know synchronization should be used ...
5
votes
4answers
863 views
ASP MVC: Should services return IQueryable's?
What do you think? should your DAO return an IQueryable to use it in your controllers?
Thanks in advance
5
votes
2answers
668 views
Why use an MVC framework when Servlets, JSPs and a lightweight DAO layer will work?
I'm finding it difficult to embrace a Java MVC framework, when it looks as if Servlets, JSPs and a lightweight DAO will do just about everything you need it to do in order to decouple the ...
4
votes
3answers
89 views
Two classes with almost duplicate code inside
At this moment, I have two classes: UserHibernateDao and TicketHibernateDao:
import java.util.List;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import model.dao.Dao;
...
4
votes
2answers
33 views
Should my MongoDB DAOs request unique DB objects?
I'm using the standard MongoDB Java driver to roll my own DAOs. I'm aware that all of my DAOs can share the same Mongo instance, but should all of my DAOs accessing the same database share the same ...
4
votes
1answer
88 views
Designing DAO on Ruby
I am just wandering is there is any reference how to design DAO (data access object) with multiple connection to different data source, in the right way. I need to build one on Ruby. In short, it ...
4
votes
4answers
158 views
DAO and dependency injection, advice?
This is the first time im using the DAO pattern. From what I've read so far, implementing this pattern will help me seperate my calling code (controller) from any persistence implementation - exactly ...
4
votes
3answers
104 views
Web Application: DAO and JPA for data layer
I'm trying to make a secure login that prevents SQLInjection using the OWASP specification for hashing but for the other parts of my application I'm thinking of using JPA, but I don't know if it's a ...
4
votes
1answer
234 views
ORM and DAO - design question
I'm currently working on the project where this discussion came and I wanted to ask others what do they think about this.
The DAO pattern is (according to wikipedia): "In computer software, a data ...
4
votes
3answers
218 views
DAO in Scala with type classes
Let my application contains business classes Order, Product, Customer, etc. and I would like to store/retrieve them in/from the database.
Usually, we use the DAO pattern for this purpose. That is, we ...
4
votes
2answers
418 views
Is DAO pattern obsolete in Scala?
Let's consider a simple example of DAO pattern. Let Person is a value object and PersonDAO is the correspondent trait, which provides methods to store/retrieve Person to/from the database.trait ...
4
votes
1answer
247 views
Network problem, suggestions sought
The LAN which has about a half dozen windows xp professional pcs and one windows 7 professional pc.
A jet/access '97 database file is acting as the database.
The method of acccess is via dao ...
4
votes
4answers
619 views
Should the relationship between a Service and DAO be one to one or one to many?
The code that sparked this question was a Service in my company's code base that contained four different DAO's. I didn't think much of this until I saw that this Service had become conflated with ...
4
votes
2answers
669 views
DAO (data access object) best practices - examples I see use a DAO and a Services object both, what is the best practice here?
I'm creating a data access object to retrieve information from Google App Engine for a web app built on the Spring framework (first time for all).
I see a number of examples that use a ...
4
votes
2answers
949 views
Is it OK to have singleton DAO objects?
Consider the following classes' structure:
BaseDAO with methods to crest PreparedStatement and get connection from pool
AccountDAO extends BaseDAO to work with Account table via JDBC. This class is ...
4
votes
4answers
734 views
JPA and DAO - what's the standard approach?
I'm developing my first app with JPA/Hibernate and Spring. My first attempt at a DAO class looks like this:
@Repository(value = "userDao")
public class UserDaoJpa implements UserDao {
...
4
votes
4answers
685 views
spring mvc dao and service bean mapping
I am new to Spring and hibernate.
I am trying to learn the best practices and design methodoligies in j2ee apps.
I have a managed to create a basic spring mvc web app. now lookin for that
- how ...
4
votes
2answers
112 views
Should an Entity ever know anything about its DAO?
I have a chance to introduce NHibernate to my group by using it with some new components that are being added to a legacy application. I'm trying to get my head around using the DAO pattern with ...
4
votes
0answers
362 views
Access 2007 upgrade DAO references conflict
I am updating an Access 97 DB w/ VBA code to Access 2007. The VBA code uses DAO objects that Access 2007 references when I converted the db files (first from 97 to 2002, then to 2007). My problem ...
4
votes
3answers
3k views
Hibernate or JPA or JDBC or?
I am developing a Java Desktop Application but have some confusions in choosing a technology for my persistence layer.
Till now, I have been using JDBC for DB operations. Now, Recently I learnt ...
4
votes
4answers
170 views
Should I pass in or encapsulate a connection in a DAO?
Is it better to encapsulate the connection inside a DAO, ie have the DAO create or retrieve the connection and then close, or is better to pass the connection into the DAO and handle the details in ...
4
votes
2answers
652 views
One DAO per thread or threadsafe DAO?
I'm wondering if there's an approved practice in a multi-threaded app. Should I have one DAO per thread or simply make one DAO a thread safe singleton.
4
votes
3answers
2k views
What is the difference between DAO and DAL?
Having studied Java at school I am quite familiar with the DAO-pattern(Data access object). However at work I use .NET. In .NET there is often talk about the DAL(Data Access Layer). To me their ...
4
votes
3answers
1k views
Spring MVC Domain Object handling Best Practice
Lets assume a simple Spring MVC Controller that receives the ID of a domain object. The Controller should call a service that should do something with that domain object.
Where do you "convert" the ...
4
votes
2answers
9k views
Is there a way to change the JPA fetch type on a method?
Is there a way to change the JPA fetch type on a single method without editing the entity object?
I have a shared ORM layer consisting of JPA entity classes. This ORM layer is accessed by two DAO ...
4
votes
5answers
3k views
JDBC DAO - any good reference implementation?
Can anyone point me to a well written DAO using JDBC, that covers all the exceptions a DAO should handle.
I looked at some samples at java.sun.com, their blue prints but there is a lot of theory and ...