DAO - Data Access Objects

learn more… | top users | synonyms

0
votes
0answers
7 views

Abstract Class and @Inject

I'm writing a web application and i need for many controller and DAO. I created the classes like you can see here (Class Diagram) . The problem is that i would like the CSCIControllerImpl class ...
0
votes
1answer
24 views

Exception when saving a result

I am developping J2EE application with appfuse , i have a webform called easyVolAction that contain a method search() I need to save the result of search method in database but and an excpetion is ...
0
votes
0answers
16 views

Interfaces in Generic DAO ? What's the real benefit?

I've coding for quite some time now however there certain aspects of inheritance which I an unable to understand. I know that we have four access levels. Public default protected private and very ...
0
votes
4answers
55 views

DAO and Data transfer object

So in the Data transfer Object there should be only setters and getters.. However what about handling also inserting and deleting objects from the Data transfer Object? public class dto{ setters ...
0
votes
1answer
31 views

Best practices for Spring Transactions and generic DAOs & Services

I work on a Java EE application with Spring and JPA (EclispeLink). We developed a user-friendly interface for administrating the database tables. As I know more about Spring and Transactions now, I ...
0
votes
3answers
49 views

DAO pattern in java what is a Business Object

Directly from this oracle article about the J2EE DAO Pattern: Everything is very clear indeed but the Business Object "participant" (as they call it). Here I quote the bit I would like more insights ...
1
vote
3answers
64 views

Java Transfer Object, what is it?

Directly from this oracle article about the J2EE DAO Pattern: Everything is very clear indeed but the Transfer Object "participant" (as they call it). Here I quote the bit I would like more insights ...
5
votes
1answer
109 views

Avoiding global state in DAO layer of a Clojure application

I'm trying to implement the ideas from http://thinkrelevance.com/blog/2013/06/04/clojure-workflow-reloaded into my codebase. I have a dao layer, where I now need to pass in a database in order to ...
0
votes
1answer
30 views

Hibernate spring unit testing with mySQL in memory database

I just saw an article that we can use HSQLDB to do this but I was thinking of testing my DAOs using mySQL in memory database since behavior varies from database to database. Can someone tell me how I ...
1
vote
0answers
38 views

Exporting MS Access Forms and Class / Modules Recursively to text files?

I found some code on an ancient message board that nicely exports all of the VBA code from classes, modules and forms (see below): Option Explicit Option Compare Database Function SaveToFile() ...
-1
votes
1answer
45 views

JUnit tests Spring web application. DAO layer [closed]

I have a Java web application using Spring + Hibernate frameworks. And now I have to write JUnit tests for DAO layer. Could you please show me links on documentation and tutorials. From what should I ...
0
votes
0answers
40 views

Opening an MS-Access database using DAO and a Workgroup File?

I have a directory of MS-Access databases (*.mdb) that I'm trying to export vba code from using a macro that I'm writing. I've written some other code for doing things like exporting queries and have ...
-2
votes
1answer
35 views

How to import forms,reports and module data in .accdb file

I am work on office access 2013 database. I need some forms,Reports,modules are import one .mdb file to .accdb file using progmatically (OLE and any other technology).
0
votes
0answers
23 views

Java DAO object make multthread?

I am using struts1.3 action layer with hibernate. I am accessing through HeperFactory patten to create helper instance to access DAO layer. The helper factory seems to be Singleton but thread safe. ...
2
votes
1answer
85 views

Null values are insering in data base using Struts2 and hibernate

I am using struts2 and Hibernate integration application to insert values in database. But after inserting values from form filed only null value is saving in database; this is my form jsp file ...
0
votes
0answers
36 views

java.lang.NoClassDefFoundError: org/datanucleus/jpa/exceptions/NoPersistenceXmlException

I'm trying to use Google AppEngine to build a rest-full server. I'm used to create ones with springframework + jpa but I've some problem when I lunch my app in debug. I've configured my project in ...
0
votes
2answers
38 views

Domain, DAO and Service layers

I need to learn the difference between the type of methods (in term of business logic) that should be inside the Domain, DAO and Service layers objects. For example, if I am building a small web ...
0
votes
1answer
56 views

java server side form validation using DTO hash map

I am developing an app with MVC Controllers: servlets Model : I am following DAO/DTO pattern for accessing database View : simple JSP EL and JSTL For accessing database i am using DAO pattern, ...
0
votes
1answer
21 views

.MoveNext very slow on DAO recordset

I have a DAO recordset that opens the following query: SELECT sd.pointnumber FROM (sdn INNER JOIN sd ON sdn.filename=sd.filename) INNER JOIN o ON sd.oID = o.id WHERE o.id = [oID] And sdn.Line ...
0
votes
2answers
63 views

MyBatis - Mapper vs DAO

I am trying to get this answered, and found one comment in the MyBatis documentation: Usually MapperFactoryBean is preferred to this class, since it requires no extra code. But, this class(DAO) ...
0
votes
0answers
58 views

Retrieve a Spring JdbcTemplate object using other DAO [closed]

Performing a job in Spring JDBC, I recall a related object by its ID, which also has a search by ID. public class Persona { private Integer id; private String primerNombre; // ... } ...
2
votes
1answer
54 views

strange behavior accessing DB2 database from VB.NET project

We have a test environment and a production environment with DB2 database and VB.net projects. We have recently added 4 columns to a 74 column table, giving a total of 78 columns. We have had this ...
1
vote
2answers
72 views

EJB 3.1 Generic DAO

I am trying to implement a Generic DAO to use in my project. The code I have implemented thus far is the following: Base DAO public abstract class BaseDAO<T> { private Class<T> ...
0
votes
1answer
19 views

BaseDao for LINQ

I use linq DBML file for data mapping in my project. I have a lot of entities there, Like Areas, Locations, Departments, etc. I want something like Base Dao that implements base functions like ...
0
votes
0answers
22 views

SQL update dynamic fields

I have a dynamic generated form with multiple fields. So users can see multiple 'projects' and select one and see the form that belongs to that project. Now not all fields from the database are ...
0
votes
1answer
90 views

Hibernate: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect)

First of all sorry. I know it's have been alot of same topics, but maybe my english bad or maybe I did not find the right answer. I use Optimistic locking @Version annotation. I need one for one Row ...
0
votes
1answer
86 views

Hibernate and Query with criteria No value specified for parameter 2

I don't know why, but I do face the exception everytime when I try to put more than one parameter to method for extract sorted data from database. What I want to do is extract data from one entity and ...
0
votes
1answer
47 views

Is REST/SOAP performance fast enough for use between PHP applications [closed]

Goal: Separate business logic and processes from ecommerce shopping cart. Just so we're clear, we are a larger ecommerce shop but by no means are we dealing with mega amounts of traffic here, just a ...
0
votes
1answer
33 views

jUnit Unexpected method call DAO Easymock check User

I have a problem with testing check user method from DAO. Here is the code: private UserService service; private UserDao mockDAO; @Before public void setUp(){ service=new UserService(); ...
0
votes
1answer
80 views

Generic DAO - “Never go full generic!”

Ive seen allot of usages of generic dao over the internet. you gotta love it: public interface GenericDao <T, PK extends Serializable> {} public class GenericDaoHibernateImpl <T, PK extends ...
0
votes
1answer
39 views

Update vs Refresh in ORMLite

Dao<T,ID> Interface provides many DAO methods such as update,create ,...etc I read that Update method will not save changes made to foreign objects or to foreign collections. Did ...
0
votes
3answers
77 views

JSP/ DAO error : The method getInstance() is undefined for the type ConnectionPool

As you can see, this code is part of my Data Access Object Layer. I've never used the ConnectionPool Object before because i'm still studying Java. Anyway, i'm getting an error message stating : ...
1
vote
1answer
43 views

On Services, Daos and in between - a beginner's dilemma

I'm pretty new to layered architecture, + spring + hibernate after reading some guides on how the class hierarchy is supposed to be - i came up with this structure: public interface GenericDAO { ...
0
votes
1answer
63 views

jUnit Unexpected method call DAO Easymock

I am newbie with mock testing. I want to test my DAO for users. Here is my code. private UserService service; private UserDAO mockDAO; @Before public void setUp(){ service=new UserService(); ...
0
votes
2answers
159 views

Spring Hibernate : Generic Dao addition causes - org.hibernate.TransactionException: nested transactions not supported

I have a layered architecture in my project. in order to prevent redundancy i created a very basic generic dao: public interface GenericDAO { public <T> T getItemById(long id, ...
1
vote
0answers
86 views

Java + Spring + hibernate : Dao implementation that is about to change in the future

I'm currently developing a web server with spring 3 and hibernate 4. in my server i have the following interfaces: 1) GenericDao 2) UserDao extends GenericDao 3) ProductDao extends GenericDao 4) ... ...
2
votes
4answers
160 views

Hibernate and Spring - Dao ,Services

I've been reading some tutorials and I could see that most of the MVC implementations are based on: 1) a dao interface for example "IUserDao" 2) a dao impl of that interface - ...
0
votes
4answers
70 views

How can I reduce code duplication in my database access layer?

I am new to Java and I'm trying to implement a basic database access layer. I'm using Apache DBUtils to reduce JDBC boilerplate code and this is working really well. The problem is that my ...
3
votes
1answer
621 views

Display data from a database using JSP, Servlets, JSTL and Command Pattern

I'm trying to display data from a database, but nothing happens on JSP. I used a design pattern Command. Where is my problem? Structure of Command design pattern: Here is my code: JSP page: ...
0
votes
2answers
48 views

jdbc update with dao pattern not working

i have a jsf page that update employee table with this code.... i can get the data,but i can't update it with primefaces.and when i debug it,it doesn't do anything. i need help to update the data. ...
1
vote
1answer
78 views

Do I need to use ADO when connecting to Active Directory with VBA?

I need to query Active Directory and build my MS Access database using the results. I found some code here. As you can see, part of this code is creating an ADODB.Connection object. Is this the only ...
1
vote
1answer
148 views

Registering MySQL DataSource with JNDI for Hibernate

I have hibernate which connect to database via JNDI datasource. My purpose: registry DataSource with JNDI to test DAO layer. Example Hibernate config <hibernate-configuration> ...
0
votes
1answer
36 views

Hibernate session not working in spring

I have a very strange issue with Spring and Hibernate. I have everything configured, my database.properties, the hibernate.xml and datasource.xml as I saw in the tutorials, but connection isn't ...
1
vote
1answer
57 views

GWT Error: RequestFactory ValidationTool must be run

Everytime I launch my app I get the "RequestFactory Validation Tool must be run..." error even if listEmptyBoxes() is not executed. I already have file requestfactory-apt-2.5.0-rc1.jar on the ...
1
vote
4answers
64 views

Call to Asynchronous Function

I am using parse.com as my backend service for my Android application. I wish to make separation between my activities and parse, for this purpose I have created service class witch will bridge ...
0
votes
1answer
55 views

Optimizing data inserts for HibernateTemplate

I have to optimize the database (especially insert) performance of a certain legacy tool. The tool has been written in Java and for the data access layer Spring + HibernateTemplate was the technology ...
0
votes
1answer
68 views

How does spring mvc annotation driven link a repository object

I am using Spring MVC annotation driven configuration. I have a repository class named ProductRepository annotated with @Repository. In my ProductController class I have a private field ...
0
votes
1answer
63 views

Create DAO for existing CSV file

given is an existing CSV file with the following example structure/content: id,password,role user1,1234,student user2,1234,professor I want to create a basic DAO with simple CRUD operations in Java ...
0
votes
1answer
84 views

Is it possible to change the Double column Decimal Size

Is it possible to change the Double column Decimal Size(Number of Decimals) in MS ACCESS using C# with the help of DAO/Query. As per the MSDN size : The field size in characters (Text and ...
1
vote
2answers
536 views

Junit test case for database insert method with DAO and web service

I am implementing a webservice based university management system. This system adds certain courses to database. here below is the code that I am using. Course.java public class Course { ...

1 2 3 4 5 18