8000 GitHub - akmami/mybatis-demo
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

akmami/mybatis-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MyBatisDemo

This is demo project for MyBatis. The basic insert, delete and update operations are performed on employee object.

The demo is implemented locally on MySQL server and with Spring Framerowk. Also, Apache Tomcat is utilized as web container.

Used Programs and Packages

Main

Name Version
Tomcat 8.5.85
MySQL 8.0.32

Packages

Name Version
springframework 5.1.5
javax 8.0
jstl 1.2
mybatis 3.0.4
mybatis-spring 1.0.0
mysql-connector-java 8.0.32
c3p0 0.9.1.2

Structure

.
├── pom.xml
├── queries.sql
└── src
   └── main
       └── webapp
           └── WEB-INF
               ├── java
               │   ├── com
               │   │   └── akmami
               │   │       └── mybatisdemo
               │   │           ├── controller
               │   │           │   └── EmployeeController.java
               │   │           ├── dao
               │   │           │   ├── EmployeeMapper.java
               │   │           │   └── EmployeeMapper.xml
               │   │           ├── entity
               │   │           │   └── Employee.java
               │   │           └── util
               │   │               └── MyBatisDemoUtil.java
               │   └── resources
               │       └── mybatisdemo-config.xml
               ├── jsps
               │   ├── add-employee.jsp
               │   └── list-employees.jsp
               ├── mybatisdemo-servlet.xml
               └── web.xml

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0