Using Struts with Oracle

HiI need to use the struts framework with oracle (10g express edition), I am using eclipse IDE. anyone please help me. I dont know how to set these up for use..
[174 byte] By [ruuddina] at [2007-10-3 1:26:56]
# 1

Struts doesn't define anything for the data access layer.

It helps you write MVC applications, and provides a translator between your view (jsp pages) and your model (action forms/actions), but once you get to that point its all standard java code.

You have a few alternatives

1 - write java classes to handle the data access layer: Data Access Objects (or DAOs) using standard java/jdbc.

2 - Use a tool like hibernate to do your data layer handling.

Struts itself though won't help at all with this.

evnafetsa at 2007-7-14 18:24:30 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...