|
Ups, the post I tried to quote is this: http://in.relation.to/Bloggers/MoreXMLThanCode
|
|
I suspect many share my opinion that each and every comment posted to http:
in.relation.to Bloggers JBossDeveloperStudio10Released does not need to be re-posted to PlanetEclipse. Please remove your feed and replace it with one that doesn't spam every time someone makes a comment. |
|
"Wow... How many years working on an ORM solution and you still don't know what and Object is?"
Nice one, Paul. I don't know what an object is. Right.
This from the guy who argues [here=>http://in.relation.to/Bloggers/MoreXMLThanCode#commentsDisplay] and [here=>http://www.infoq.com/news/2007/11/oop-vs-active-record] that we should use |HashMap| to model our entities.
And FYI, I learned OO from SmallTalk. I have never been a C or C\+\+ developer. |
|
As Norman says, this release mainly addresses issues from 2.0.0.GA, but there are a few new features worth mentioning:
=Full support for [natural conversation ids=>http://docs.jboss.org/seam/2.0.1.CR1/reference/en/html/conversations.html#d0e4963]
=Generation of CRUD actions and views from existing JPA entities in seam-gen
=New version of [Embedded JBoss=>http://in.relation.to/Bloggers/EmbeddedJBossUpdate] for testing (using a much more recent version of Hibernate)
=A couple of JSF control |
|
http://blog.hibernate.org/Bloggers/Everyone/2004/08/14
So I have a method return a list call getSearchResult
public List getSearchResult(int page, int pageSize)
{
SQLQuery query = session.createSQLQuery("select * from myTable").addEntity(MyTable.class);
// now here I somehow to set your code Page class here,
I don't want to return a Page object back to JSP, I just need a List of resultset, how do I do from here.
Thanks for HELP
} |
|
http://blog.hibernate.org/Bloggers/Everyone/2004/08/14
So I have a method return a list call getSearchResult
public List getSearchResult(int page, int pageSize)
{
SQLQuery query = session.createSQLQuery("select * from myTable").addEntity(MyTable.class);
// now here I somehow to set your code Page class here,
I don't want to return a Page object back to JSP, I just need a List of resultset, how do I do from here.
Thanks for HELP
} |