├── README.md ├── WebContent ├── Error.jsp ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── jsp-api-2.2.jar │ │ ├── jstl-1.2.jar │ │ ├── mysql-connector-java-8.0.13.jar │ │ └── servlet-api-2.5.jar │ └── web.xml ├── common │ ├── footer.jsp │ └── header.jsp ├── login │ └── login.jsp ├── register │ └── register.jsp └── todo │ ├── todo-form.jsp │ └── todo-list.jsp ├── script.sql └── src └── net └── javaguides └── todoapp ├── dao ├── LoginDao.java ├── TodoDao.java ├── TodoDaoImpl.java └── UserDao.java ├── model ├── LoginBean.java ├── Todo.java └── User.java ├── utils └── JDBCUtils.java └── web ├── LoginController.java ├── TodoController.java └── UserController.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/README.md -------------------------------------------------------------------------------- /WebContent/Error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/Error.jsp -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jsp-api-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/WEB-INF/lib/jsp-api-2.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-8.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/WEB-INF/lib/mysql-connector-java-8.0.13.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/WEB-INF/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebContent/common/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/common/footer.jsp -------------------------------------------------------------------------------- /WebContent/common/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/common/header.jsp -------------------------------------------------------------------------------- /WebContent/login/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/login/login.jsp -------------------------------------------------------------------------------- /WebContent/register/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/register/register.jsp -------------------------------------------------------------------------------- /WebContent/todo/todo-form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/todo/todo-form.jsp -------------------------------------------------------------------------------- /WebContent/todo/todo-list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/WebContent/todo/todo-list.jsp -------------------------------------------------------------------------------- /script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/script.sql -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/dao/LoginDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/dao/LoginDao.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/dao/TodoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/dao/TodoDao.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/dao/TodoDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/dao/TodoDaoImpl.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/dao/UserDao.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/model/LoginBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/model/LoginBean.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/model/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/model/Todo.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/model/User.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/utils/JDBCUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/utils/JDBCUtils.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/web/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/web/LoginController.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/web/TodoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/web/TodoController.java -------------------------------------------------------------------------------- /src/net/javaguides/todoapp/web/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/todo-application-jsp-servlet-jdbc-mysql/HEAD/src/net/javaguides/todoapp/web/UserController.java --------------------------------------------------------------------------------