I have to create a simple WebApplication with Java which shows a Login Dialog and after it shows some textfields, gets some Data out of a Database (Sybase) do something with it and insert a new record to the database. Now I am looking for a good tutorial, which explains me, how to setup the needed environment and shows me the start for creating a WebApplication with Java. Can anyone give me some good links to such tutorials? - Many Thanks.
-
jw - are you using Sybase for a particular reason?DJSunny– DJSunny2011-09-26 19:27:07 +00:00Commented Sep 26, 2011 at 19:27
-
@csjohn - There is already an existing Sybase-Database from an ERP-System and I have to read some data out of this existing Database.BennoDual– BennoDual2011-09-26 19:28:22 +00:00Commented Sep 26, 2011 at 19:28
-
static.springsource.org/docs/Spring-MVC-step-by-stepMike Yockey– Mike Yockey2011-09-26 19:30:23 +00:00Commented Sep 26, 2011 at 19:30
3 Answers
1- BalusC blog - more JSF focused but has every thing . Does not use Spring.
2- Appfuse great starter application plus tutorials uses spring.
3- LULU - Interestingly does not have community presence or atleast not with same name.Uses Spring
4- Java Passion - But not free but very well worth it. I have been member since it was free and now pay annual subscription every year.Not based on spring but does have spring for those who are interested.
5- Spring Roo this is youtube link but you can google as well popular but not my personal choice.
6- Jboss - This is tips link which has further links.Does not use spring and wish they will all die (pun intended and hope not)
7- Netbeans No spring and probably best for any starter
I can go on and on but this should be enough . Also I have a feeling that this question might be closed as soon as people in North-Western Hemisphere wake up :)
1 Comment
If you want to look at using Spring (which seems very popular these days) maybe you should check out this question: Getting started with Spring 3 Web MVC - Setting everything up
Comments
Play framework is what you need. It provides the simplest way to create a web application. Starting with hello world application you'll find another manuals and samples that will help you to achieve your goals.