java - What tech to use to build a very basic hotel booking type web-app? -
i'm newbie. :(
i've taken 4 java courses , written simple apps. part of class, wrote order purchasing application jdbc , jsp pages/servlets. bummer there wasn't info in class on using eclipse & such , seems there more efficient , modern ways of doing now.
i want keep learning , since ski club has need streamline it's booking process (currently email), thought see if write application this. think right way write support webservices type interface, (maybe i'm getting ahead of myself) write mobile app well. i'm getting bit confused choices out there though don't understand how different layers fit , best place start. so, summarize:
1) beginner level java - continue using it.
2) want build simple hotel booking type app.
3) webservices (soap?) interface front end
4) open-source tools fwiw: i'll doing on macbook linux vm. have own hosted domain , mysql db setup there testing.
i'd if recommend approach me. perhaps tutorials or online class me closer getting started? pretend me. :)
thanks!
your plan seems pretty good.
i think makes sense.
- mysql if want use sql db
- jsp/servlets front-end; jsp
- jdbc , hibernate accessing db (unless want use nosql db e.g. mongodb); maybe hibernate don't want mess low-level jdbc api
- mongodb java driver if want use mongodb instead of sql db
- tomcat run jsps
- i suggest restful web services on soap web services, if need use web services; rest easier implement , more lightweight
i guess sufficient.
Comments
Post a Comment