Skip to content

ctb0k33/Simple-WS-connect-with-database-Java-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Simple WS connect with database Java

Simple Web Service for beginners who want to learn basic back-end Java.

  • Here are some steps you need to follow to execute this code:

  • Necessary app you need to run this code:

    • MySQL Server
    • SOAP UI or other app that use to test API
  • Code to create students database with student_information table in MySQL:

    • DROP DATABASE IF EXISTS students;
      CREATE DATABASE students;
      USE students;
      CREATE TABLE student_information(
      name VARCHAR(50) NOT NULL,
      code VARCHAR(50) NOT NULL,
      age int NOT NULL,
      class_name NVARCHAR(50) NOT NULL,
      address NVARCHAR(50) NOT NULL,
      mark float NOT NULL);

About

Simple Web Service for beginners who want to learn basic back-end Java.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages