Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d1eb85a

Browse filesBrowse files
committed
1
1 parent a4f152c commit d1eb85a
Copy full SHA for d1eb85a

File tree

Expand file treeCollapse file tree

66 files changed

+3389
-0
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

66 files changed

+3389
-0
lines changed
Open diff view settings
Collapse file

‎JavaEE_2020/SpringBoot_JPA/Employee_DB_Script.sql‎

Copy file name to clipboardExpand all lines: JavaEE_2020/SpringBoot_JPA/Employee_DB_Script.sql
+38Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
SQLyog Ultimate v12.09 (64 bit)
3+
MySQL - 8.0.14 : Database - org_db
4+
*********************************************************************
5+
*/
6+
7+
/*!40101 SET NAMES utf8 */;
8+
9+
/*!40101 SET SQL_MODE=''*/;
10+
11+
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
12+
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
13+
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
14+
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
15+
CREATE DATABASE /*!32312 IF NOT EXISTS*/`org_db` /*!40100 DEFAULT CHARACTER SET utf8 */;
16+
17+
USE `org_db`;
18+
19+
/*Table structure for table `employee` */
20+
21+
DROP TABLE IF EXISTS `employee`;
22+
23+
CREATE TABLE `employee` (
24+
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
25+
`NAME` varchar(100) NOT NULL,
26+
`AGE` int(10) NOT NULL,
27+
`SALARY` int(10) DEFAULT NULL,
28+
PRIMARY KEY (`ID`)
29+
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
30+
31+
/*Data for the table `employee` */
32+
33+
insert into `employee`(`ID`,`NAME`,`AGE`,`SALARY`) values (1,'Peter',35,90000),(2,'Dave',40,6000);
34+
35+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
36+
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
37+
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
38+
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
Collapse file
104 KB
Binary file not shown.
Collapse file
+25Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
### IntelliJ IDEA ###
14+
.idea
15+
*.iws
16+
*.iml
17+
*.ipr
18+
19+
### NetBeans ###
20+
/nbproject/private/
21+
/nbbuild/
22+
/dist/
23+
/nbdist/
24+
/.nb-gradle/
25+
/build/
Binary file not shown.
Collapse file
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
Collapse file

‎JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw‎

Copy file name to clipboardExpand all lines: JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw
+286Lines changed: 286 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.