Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8307565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:33:08+00:00 2026-06-08T18:33:08+00:00

Please advise that what is DTO pattern as I came from my analysis is

  • 0

Please advise that what is DTO pattern as I came from my analysis is that it is data transfer object pattern , Can you please advise any example of it in Hibernate specially or in any other java example, Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:33:10+00:00Added an answer on June 8, 2026 at 6:33 pm

    A DTO is one of the work-arounds for the terrible persistence found in EJB 2.1 (collectively known as the Sun Blueprint Catalog). It is used for extracting data from a entity bean and passing it to the data layer. Data from that layer is placed in a DTO and put into the entity bean. This is only for bean managed persistence.

    This is what was officially the meaning of a DTO. Today you also find this in transferring data from the back-end to the front-end (in client-server architecture).

    If you want to use this in Hibernate, create a query/criteria for selecting the columns you need and then use the AliasToBeanResultTransformer for setting these columns in a DTO. An example in the Hibernate documentation:

    List resultWithAliasedBean = 
        s.createCriteria(Enrolment.class)
            .createAlias("student", "st")
            .createAlias("course", "co")
            .setProjection(
                Projections.projectionList()
                    add( Projections.property("co.description"), "courseDescription" )
            )
            .setResultTransformer( new AliasToBeanResultTransformer(StudentDTO.class) )
        .list();
    
    StudentDTO dto = (StudentDTO)resultWithAliasedBean.get(0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone please advise me if there will be any problems changing the wordpress
Hey guys! Can you please advise me how to modify my .htaccess so that
Can any one please advise me how I can get the current count of
Please can any ove suggest me how i can remove time part from sql
Please advise me a jQuery carousel plugin that can make a carousel like the
Please advise for encryption in flash that can be decrypted easily in PHP.
Please advise if you can. I am building an SMS web service API that
Can you please advise a way of binary data fusion? Here is a a
Would anyone please advise how in jade for nodejs I can truncate a string
Can anyone please advise where i'm going wrong with the following? I want the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.