Skip to content

Latest commit

 

History

History
35 lines (35 loc) · 2.18 KB

README.md

File metadata and controls

35 lines (35 loc) · 2.18 KB

My training projects

Servers "Taxi_service" and "Election_service" projects were started with Tomcat
TAXI_SERVICE Maven module description:
Web interface for taxi service.
Written with the usage of : Java, Spring, Hibernate, HTML, CSS, JSTL, JSP, MAVEN
Project structure:
webapp - web part written with the use JSP pages (WEB-INF/jsps), HTML, CSS, JSTL
java
|-com.js.taxi
/domain - domain objects for database (Oracle 10), configured with javax.persistence annotations
/dao - data access objects (interfaces and their implementations), configured with Spring's bean annotations(@Repository), written with the usage of Hibernate framework
/exeption - exeptions for services
/service - services (interfaces and their implementations), configured with Spring's bean annotations(@Service)
/controller - Spring controllers (@Controller)
resourses
|-conf.properties - properties for Spring's context
|-log4j.properties - properties for Log4j


ELECTION_SERVICE Maven module description:
Web interface for elections. Voter signs in and gets candidates for his region, voter can vote only once
Written with the usage of : Java, Spring, Hibernate, HTML, CSS, JSTL, JSP, JavaScript, JSON, AJAX, MAVEN
Project structure:
webapp - web part written with the use JSP pages (WEB-INF/jsps), HTML, CSS(/css), JSTL, JavaScript(/js), AJAX, JSON
java
|-com.js.election
/domain - domain objects for database (Oracle 10), configured with javax.persistence annotations
/dao - data access objects (interfaces and their implementations), configured with Spring's bean annotations(@Repository), written with the usage of Hibernate framework
/service - services (interfaces and their implementations), configured with Spring's bean annotations(@Service)
/controller - Spring controllers (@Controller)
resourses
|-conf.properties - properties for Spring's context
|-log4j.properties - properties for Log4j


miscellaneous module description:
|-chatter.AsyncChat - network chatter desktop application. GUI written with the use of JavaFX