DAO less & Bean less framework?

have you ever worked with any framework which doesn't have DAO and BusinessBeans (Beans like user, customer) - still automating few things.

Because every project has bean's and need to write jdbc code which has to be mapped to beans... I came to know there are few complex framework based on xml can avoid everything..

Google could not helpme , where-else I could post the question to find answers.

Could anyone help me?

Regards,

Mohan

[474 byte] By [mohanmcaa] at [2007-11-27 5:53:58]
# 1
Yes, they exist. Simply put it all in one JSP page, using JSTL and scriptlets. But then you certainly can't talk about a valuable framework.
BalusCa at 2007-7-12 15:47:52 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

I am not satisfied by your answer.

I am sure there should be someone has knowledge about such a framework... I am not trying to dump everything in JSP, Assume it is not a web project..

In every project.. you have to write beans.. and dao, populate the beans and display them.. rather there could me mapping from input to output.. Atleast I come across such a concept in McDonalds. Since I was not able to overhear more about it :) I don't have more information. That conversation seems to be making some sense to me.

Regards,

Mohan

mohanmcaa at 2007-7-12 15:47:52 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Hi , Actually Thats a separation of code. Like Separating business Logic,Database Layer and presentation Layer. Alternatively you can mix all these. But Originally beans and dao's are related to a defined framework.
Adeea at 2007-7-12 15:47:52 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
I think what you are looking for is a Java-DB mapping framework like Hiberate or Ibatis that allow mapping of Java Beans to the database schema with out coding the JDBC methods.
tolmanka at 2007-7-12 15:47:52 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...