public interface BaseDAO
{
public void setDataSource(DataSource dataSource);
}
public class BaseDAOImpl implements BaseDAO
{
public DataSource dataSource;
public void...
Type: Posts; User: shankara98; Keyword(s):
public interface BaseDAO
{
public void setDataSource(DataSource dataSource);
}
public class BaseDAOImpl implements BaseDAO
{
public DataSource dataSource;
public void...
Folks, thank you for your responses.
I have another question on best practices, now that I'm trying to improve my anemic domain objects. With something like a Country list and/or State list,...
Thank you for your response. I understand the nature and usage of DTOs. Maybe I should have phrased my question differently.
Given that I follow the recommendation of not using DTOs (since my...
Hello All,
I have read through some of the excellent discussions in this forum on best design practices, specifically dealing with DTOs. But I'm still not clear on some issues.
Let's say I have...