Search:

Type: Posts; User: shankara98; Keyword(s):

Search: Search took 0.04 seconds.

  1. How to use Spring IOC to set a property in the Base class

    public interface BaseDAO
    {
    public void setDataSource(DataSource dataSource);
    }

    public class BaseDAOImpl implements BaseDAO
    {
    public DataSource dataSource;

    public void...
  2. Replies
    10
    Views
    2,676

    Folks, thank you for your responses. I have...

    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,...
  3. Replies
    10
    Views
    2,676

    Thank you for your response. I understand the...

    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...
  4. Replies
    10
    Views
    2,676

    Designing without DTOs

    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...
Results 1 to 4 of 4