Skip to content

kuidreS/TaskManagerWebApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TaskManagerWebApp

Spring Data JPA + Hibernate + PostgreSQL + Spring MVC + AngularJS

Project description: Task manager is Java web application for creating task and saving it in database. Task consists of: task name, task description, task status, task priority, task date.

Demo

task table

CREATE TABLE task

(

id bigint NOT NULL,

date timestamp without time zone NOT NULL,

description character varying(256),

name character varying(256) NOT NULL,

priority character varying(256) NOT NULL,

status character varying(256) NOT NULL,

CONSTRAINT task_pkey PRIMARY KEY (id)

)

https://drive.google.com/file/d/0B8idIAISylXFUXZBaEdvSGhielk/view?usp=sharing

view

https://drive.google.com/file/d/0B8idIAISylXFQXE0R3dqcFNVQzA/view?usp=sharing

https://drive.google.com/open?id=0B8idIAISylXFRG1NZFRMeGJITkU

About

Spring Data JPA + Hibernate + PostgreSQL + Spring MVC + AngularJS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published