T5 & CRUD

View: New views
6 Messages — Rating Filter:   Alert me  

T5 & CRUD

by Norman Franke-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm going to create an app using T5.1 that will do a lot of CRUD-type  
things. I'll need lots of flexibility. What's the best way to go about  
this? I want to use tapestry-hibernate. and I'm likely going to do  
some type of DAO.

Any advice appreciated.

Norman Franke
Answering Service for Directors, Inc.
www.myasd.com




Re: T5 & CRUD

by Thiago H. de Paula Figueiredo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Jun 26, 2009 at 12:31 PM, Norman Franke<norman@...> wrote:
> I'm going to create an app using T5.1 that will do a lot of CRUD-type
> things. I'll need lots of flexibility. What's the best way to go about this?
> I want to use tapestry-hibernate. and I'm likely going to do some type of
> DAO.

Take a look at the Ars Machina Project:
http://www.arsmachina.com.br/project. It has some packages that can
speed up your development.

--
Thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: T5 & CRUD

by Norman Franke-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I did look into that, but I don't really want to use Spring's IoC and  
I couldn't get the demo to run. Tons of Maven problems. Documentation  
also seemed sparse. Is there an online demo?

The controllers seemed to have the almost identical interface as the  
DAOs (and I'd rather have the DAO do transactions since I don't need  
anything fancy.) I'm already doing authentication via Spring Security.

For some small tables, I'd like to do all editing inline in the table.  
Is there something for this? An editable data grid?

Norman Franke
Answering Service for Directors, Inc.
www.myasd.com



On Jun 26, 2009, at 11:38 AM, Thiago H. de Paula Figueiredo wrote:

> On Fri, Jun 26, 2009 at 12:31 PM, Norman Franke<norman@...>  
> wrote:
>> I'm going to create an app using T5.1 that will do a lot of CRUD-type
>> things. I'll need lots of flexibility. What's the best way to go  
>> about this?
>> I want to use tapestry-hibernate. and I'm likely going to do some  
>> type of
>> DAO.
>
> Take a look at the Ars Machina Project:
> http://www.arsmachina.com.br/project. It has some packages that can
> speed up your development.
>
> --
> Thiago
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>


Re: T5 & CRUD

by Sven Homburg :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

for spring-less DAOs try this:

http://www.chenillekit.org/chenillekit-hibernate/index.html

with regards
Sven Homburg
Founder of the Chenille Kit Project
http://www.chenillekit.org





2009/6/26 Norman Franke <norman@...>:

> I did look into that, but I don't really want to use Spring's IoC and I
> couldn't get the demo to run. Tons of Maven problems. Documentation also
> seemed sparse. Is there an online demo?
>
> The controllers seemed to have the almost identical interface as the DAOs
> (and I'd rather have the DAO do transactions since I don't need anything
> fancy.) I'm already doing authentication via Spring Security.
>
> For some small tables, I'd like to do all editing inline in the table. Is
> there something for this? An editable data grid?
>
> Norman Franke
> Answering Service for Directors, Inc.
> www.myasd.com
>
>
>
> On Jun 26, 2009, at 11:38 AM, Thiago H. de Paula Figueiredo wrote:
>
>> On Fri, Jun 26, 2009 at 12:31 PM, Norman Franke<norman@...> wrote:
>>>
>>> I'm going to create an app using T5.1 that will do a lot of CRUD-type
>>> things. I'll need lots of flexibility. What's the best way to go about
>>> this?
>>> I want to use tapestry-hibernate. and I'm likely going to do some type of
>>> DAO.
>>
>> Take a look at the Ars Machina Project:
>> http://www.arsmachina.com.br/project. It has some packages that can
>> speed up your development.
>>
>> --
>> Thiago
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

best regards
Sven

Re: T5 & CRUD

by Thiago H. de Paula Figueiredo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Em Fri, 26 Jun 2009 13:55:17 -0300, Sven Homburg <homburgs@...>  
escreveu:

> for spring-less DAOs try this:
>
> http://www.chenillekit.org/chenillekit-hibernate/index.html

Just to make sure, Ars Machina's Generic DAO-Hibernate does not have any  
dependency on Spring, just on Hibernate itself.
The project website does not give any hint that Generic DAO and Generic  
DAO-Hibernate are dependent on Spring, so I'm curious to know why people  
thought they wre. :)
The only packages that depend on Spring are Generic Controller-Spring and  
Generic Authentication-Spring Security-Tapestry (not released, sources  
available).

Ars Machina has an example application at  
www.arsmachina.com.br/project/example. It showcases all the projects in a  
single project. Not online yet.
About documentation and Maven problems, I'll take care of them late next  
month (I have one project to finish before doing this). I've wrote more  
packages and improved a lot the existing ones.

--
Thiago H. de Paula Figueiredo
Independent Java consultant, developer, and instructor
http://www.arsmachina.com.br/thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: T5 & CRUD

by Marcus Veloso :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

http://tapestry5.wikidot.com/

On 6/26/09, Thiago H. de Paula Figueiredo <thiagohp@...> wrote:

> Em Fri, 26 Jun 2009 13:55:17 -0300, Sven Homburg <homburgs@...>
> escreveu:
>
>> for spring-less DAOs try this:
>>
>> http://www.chenillekit.org/chenillekit-hibernate/index.html
>
> Just to make sure, Ars Machina's Generic DAO-Hibernate does not have any
> dependency on Spring, just on Hibernate itself.
> The project website does not give any hint that Generic DAO and Generic
> DAO-Hibernate are dependent on Spring, so I'm curious to know why people
> thought they wre. :)
> The only packages that depend on Spring are Generic Controller-Spring and
> Generic Authentication-Spring Security-Tapestry (not released, sources
> available).
>
> Ars Machina has an example application at
> www.arsmachina.com.br/project/example. It showcases all the projects in a
> single project. Not online yet.
> About documentation and Maven problems, I'll take care of them late next
> month (I have one project to finish before doing this). I've wrote more
> packages and improved a lot the existing ones.
>
> --
> Thiago H. de Paula Figueiredo
> Independent Java consultant, developer, and instructor
> http://www.arsmachina.com.br/thiago
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...