├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── course-files ├── Joins and Link Tables │ ├── Exercise Solution │ └── Insert-into-student_course.sql ├── profiles.txt └── student.sql ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── js ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Container.js │ ├── Footer.css │ ├── Footer.js │ ├── Notification.js │ ├── client.js │ ├── forms │ │ ├── AddStudentForm.js │ │ └── EditStudentForm.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js └── yarn.lock ├── main ├── java │ └── com │ │ └── amigoscode │ │ └── demo │ │ ├── DemoApplication.java │ │ ├── EmailValidator.java │ │ ├── datasource │ │ └── Datasource.java │ │ ├── exception │ │ ├── ApiException.java │ │ ├── ApiExceptionHandler.java │ │ └── ApiRequestException.java │ │ └── student │ │ ├── Student.java │ │ ├── StudentController.java │ │ ├── StudentCourse.java │ │ ├── StudentDataAccessService.java │ │ └── StudentService.java └── resources │ ├── application-demo.yml │ ├── application.yml │ ├── db │ └── migration │ │ ├── V1__CreateStudentTable.sql │ │ ├── V2__CreateStundetCourseTables.sql │ │ ├── V3__AddNullContraintToCourseDepartment.sql │ │ ├── V4__GenderEnum.sql │ │ └── V5__DropsStudentGenderCheckConstraint.sql │ └── static │ └── .gitkeep └── test └── java └── com └── amigoscode └── demo └── EmailValidatorTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | HELP.md 2 | /target/ 3 | !.mvn/wrapper/maven-wrapper.jar 4 | 5 | ### STS ### 6 | .apt_generated 7 | .classpath 8 | .factorypath 9 | .project 10 | .settings 11 | .springBeans 12 | .sts4-cache 13 | 14 | ### IntelliJ IDEA ### 15 | .idea 16 | *.iws 17 | *.iml 18 | *.ipr 19 | 20 | ### NetBeans ### 21 | /nbproject/private/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ 26 | /build/ 27 | 28 | ### VS Code ### 29 | .vscode/ 30 | 31 | src/js/node/ 32 | src/js/node_modules/ 33 | src/js/build/ 34 | 35 | -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | https://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | import java.io.File; 21 | import java.io.FileInputStream; 22 | import java.io.FileOutputStream; 23 | import java.io.IOException; 24 | import java.net.URL; 25 | import java.nio.channels.Channels; 26 | import java.nio.channels.ReadableByteChannel; 27 | import java.util.Properties; 28 | 29 | public class MavenWrapperDownloader { 30 | 31 | /** 32 | * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. 33 | */ 34 | private static final String DEFAULT_DOWNLOAD_URL = 35 | "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"; 36 | 37 | /** 38 | * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to 39 | * use instead of the default one. 40 | */ 41 | private static final String MAVEN_WRAPPER_PROPERTIES_PATH = 42 | ".mvn/wrapper/maven-wrapper.properties"; 43 | 44 | /** 45 | * Path where the maven-wrapper.jar will be saved to. 46 | */ 47 | private static final String MAVEN_WRAPPER_JAR_PATH = 48 | ".mvn/wrapper/maven-wrapper.jar"; 49 | 50 | /** 51 | * Name of the property which should be used to override the default download url for the wrapper. 52 | */ 53 | private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; 54 | 55 | public static void main(String args[]) { 56 | System.out.println("- Downloader started"); 57 | File baseDirectory = new File(args[0]); 58 | System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); 59 | 60 | // If the maven-wrapper.properties exists, read it and check if it contains a custom 61 | // wrapperUrl parameter. 62 | File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); 63 | String url = DEFAULT_DOWNLOAD_URL; 64 | if(mavenWrapperPropertyFile.exists()) { 65 | FileInputStream mavenWrapperPropertyFileInputStream = null; 66 | try { 67 | mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); 68 | Properties mavenWrapperProperties = new Properties(); 69 | mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); 70 | url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); 71 | } catch (IOException e) { 72 | System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); 73 | } finally { 74 | try { 75 | if(mavenWrapperPropertyFileInputStream != null) { 76 | mavenWrapperPropertyFileInputStream.close(); 77 | } 78 | } catch (IOException e) { 79 | // Ignore ... 80 | } 81 | } 82 | } 83 | System.out.println("- Downloading from: : " + url); 84 | 85 | File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); 86 | if(!outputFile.getParentFile().exists()) { 87 | if(!outputFile.getParentFile().mkdirs()) { 88 | System.out.println( 89 | "- ERROR creating output direcrory '" + outputFile.getParentFile().getAbsolutePath() + "'"); 90 | } 91 | } 92 | System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); 93 | try { 94 | downloadFileFromURL(url, outputFile); 95 | System.out.println("Done"); 96 | System.exit(0); 97 | } catch (Throwable e) { 98 | System.out.println("- Error downloading"); 99 | e.printStackTrace(); 100 | System.exit(1); 101 | } 102 | } 103 | 104 | private static void downloadFileFromURL(String urlString, File destination) throws Exception { 105 | URL website = new URL(urlString); 106 | ReadableByteChannel rbc; 107 | rbc = Channels.newChannel(website.openStream()); 108 | FileOutputStream fos = new FileOutputStream(destination); 109 | fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); 110 | fos.close(); 111 | rbc.close(); 112 | } 113 | 114 | } 115 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amigoscode/spring-boot-react-fullstack/9771153b5e52ea78262bc5259555a34386cb5da1/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fullstack-spring-boot-and-react 2 | 3 | Course can be found here: https://amigoscode.com/courses/spring-boot-fullstack 4 | 5 | Screenshot 2019-08-25 at 16 43 03 6 | 7 |
8 | 9 | Screenshot 2019-08-25 at 16 42 41 10 | 11 |
12 | 13 | Screenshot 2019-08-25 at 16 42 29 14 | -------------------------------------------------------------------------------- /course-files/Joins and Link Tables/Exercise Solution: -------------------------------------------------------------------------------- 1 | // 1. 2 | @GetMapping(path = "{studentId}/courses") 3 | public List getAllCoursesForStudent( 4 | @PathVariable("studentId") UUID studentId) { 5 | return studentService.getAllCoursesForStudent(studentId); 6 | } 7 | 8 | // 2. 9 | List getAllCoursesForStudent(UUID studentId) { 10 | return studentDataAccessService.selectAllStudentCourses(studentId); 11 | } 12 | 13 | // 3. 14 | 15 | private RowMapper mapStudentCourseFromDb() { 16 | return (resultSet, i) -> 17 | new StudentCourse( 18 | UUID.fromString(resultSet.getString("student_id")), 19 | UUID.fromString(resultSet.getString("course_id")), 20 | resultSet.getString("name"), 21 | resultSet.getString("description"), 22 | resultSet.getString("department"), 23 | resultSet.getString("teacher_name"), 24 | resultSet.getDate("start_date").toLocalDate(), 25 | resultSet.getDate("end_date").toLocalDate(), 26 | Optional.ofNullable(resultSet.getString("grade")) 27 | .map(Integer::parseInt) 28 | .orElse(null) 29 | ); 30 | } 31 | 32 | List selectAllStudentCourses(UUID studentId) { 33 | String sql = "" + 34 | "SELECT " + 35 | " student.student_id, " + 36 | " course.course_id, " + 37 | " course.name, " + 38 | " course.description," + 39 | " course.department," + 40 | " course.teacher_name," + 41 | " student_course.start_date, " + 42 | " student_course.end_date, " + 43 | " student_course.grade " + 44 | "FROM student " + 45 | "JOIN student_course USING (student_id) " + 46 | "JOIN course USING (course_id) " + 47 | "WHERE student.student_id = ?"; 48 | return jdbcTemplate.query( 49 | sql, 50 | new Object[]{studentId}, 51 | mapStudentCourseFromDb() 52 | ); 53 | } -------------------------------------------------------------------------------- /course-files/Joins and Link Tables/Insert-into-student_course.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO student_course ( 2 | student_id, 3 | course_id, 4 | start_date, 5 | end_date, 6 | grade 7 | ) 8 | VALUES ( 9 | 'e7e40436-b931-441d-85e0-d86b6039fdfa', 10 | '7321b9a6-29f7-49e0-9330-6d079c792608', 11 | (NOW() - INTERVAL '1 YEAR')::DATE, 12 | NOW()::DATE, 13 | 90 14 | ); -------------------------------------------------------------------------------- /course-files/profiles.txt: -------------------------------------------------------------------------------- 1 | 1. 2 | 1.6 3 | v10.13.0 4 | v1.12.1 5 | 6 | 2. 7 | 8 | 9 | demo 10 | 11 | 12 | 13 | 14 | com.github.eirslett 15 | frontend-maven-plugin 16 | ${frontend-maven-plugin.version} 17 | 18 | src/js 19 | 20 | 21 | 22 | install node 23 | 24 | install-node-and-yarn 25 | 26 | 27 | ${node.version} 28 | ${yarn.version} 29 | 30 | 31 | 32 | yarn install 33 | 34 | yarn 35 | 36 | generate-resources 37 | 38 | 39 | yarn test 40 | 41 | yarn 42 | 43 | test 44 | 45 | test 46 | 47 | true 48 | 49 | 50 | 51 | 52 | yarn build 53 | 54 | yarn 55 | 56 | compile 57 | 58 | build 59 | 60 | 61 | 62 | 63 | 64 | maven-resources-plugin 65 | 66 | 67 | copy-resources 68 | process-classes 69 | 70 | copy-resources 71 | 72 | 73 | ${basedir}/target/classes/static 74 | 75 | 76 | src/js/build 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /course-files/student.sql: -------------------------------------------------------------------------------- 1 | insert into student (student_id, first_name, last_name, email, gender) values ('e7e40436-b931-441d-85e0-d86b6039fdfa', 'Leshia', 'Aikin', 'laikin0@photobucket.com', 'FEMALE'); 2 | insert into student (student_id, first_name, last_name, email, gender) values ('13ba8584-99f5-4e7a-87b8-c2d16b39ce49', 'Idalia', 'Lentsch', 'ilentsch1@examiner.com', 'FEMALE'); 3 | insert into student (student_id, first_name, last_name, email, gender) values ('a75c1b78-0802-4888-8e8c-f8e76e34b617', 'Winny', 'Forster', 'wforster2@imgur.com', 'MALE'); 4 | insert into student (student_id, first_name, last_name, email, gender) values ('020bb0e0-7681-4eae-90f5-1218b649e917', 'Christel', 'Comolli', 'ccomolli3@state.gov', 'FEMALE'); 5 | insert into student (student_id, first_name, last_name, email, gender) values ('5ea017f7-b4f7-4bbd-800f-940253380b15', 'Minta', 'Autie', 'mautie4@eventbrite.com', 'FEMALE'); 6 | insert into student (student_id, first_name, last_name, email, gender) values ('953b52d8-a089-48a4-bbf8-e21008c72f0e', 'Jacqui', 'Rigate', 'jrigate5@ebay.co.uk', 'FEMALE'); 7 | insert into student (student_id, first_name, last_name, email, gender) values ('7492d4b0-1217-48af-9757-9611a9d4af55', 'Jacquelynn', 'McAnellye', 'jmcanellye6@guardian.co.uk', 'FEMALE'); 8 | insert into student (student_id, first_name, last_name, email, gender) values ('bc5bc1a9-1da7-4b1f-931a-4f5c3f7dc992', 'Perry', 'Vamplew', 'pvamplew7@uiuc.edu', 'MALE'); 9 | insert into student (student_id, first_name, last_name, email, gender) values ('6c20ac51-23d0-4d46-bd50-82dab6611e66', 'Rodger', 'Corradeschi', 'rcorradeschi8@europa.eu', 'MALE'); 10 | insert into student (student_id, first_name, last_name, email, gender) values ('eb8c6b33-8a73-4482-90d4-6f89e800b947', 'Brice', 'Farfull', 'bfarfull9@goo.ne.jp', 'MALE'); 11 | insert into student (student_id, first_name, last_name, email, gender) values ('ce82e722-1310-4d00-9f17-2bb0d45719f0', 'Denney', 'Chittem', 'dchittema@chron.com', 'MALE'); 12 | insert into student (student_id, first_name, last_name, email, gender) values ('d40668fa-432e-4649-88cc-871fa46a0396', 'Derron', 'Allix', 'dallixb@salon.com', 'MALE'); 13 | insert into student (student_id, first_name, last_name, email, gender) values ('5f5d877e-0649-4ec8-9991-793dfc068f75', 'Sergio', 'Stapley', 'sstapleyc@wisc.edu', 'MALE'); 14 | insert into student (student_id, first_name, last_name, email, gender) values ('fbdebde6-58c7-41e3-b51b-343e032b3b3b', 'Halsy', 'Obell', 'hobelld@rakuten.co.jp', 'MALE'); 15 | insert into student (student_id, first_name, last_name, email, gender) values ('a81ae551-6411-405b-ba89-6fe4699a7293', 'Merrick', 'Fewkes', 'mfewkese@google.com', 'MALE'); 16 | insert into student (student_id, first_name, last_name, email, gender) values ('fb5941db-1f2b-4eac-b9d5-f90927cb0621', 'Andee', 'Poultney', 'apoultneyf@elpais.com', 'FEMALE'); 17 | insert into student (student_id, first_name, last_name, email, gender) values ('6673241a-9e55-4cd3-b724-fff6fbe073c5', 'Saxe', 'Prettyjohns', 'sprettyjohnsg@epa.gov', 'MALE'); 18 | insert into student (student_id, first_name, last_name, email, gender) values ('12aca1c6-48a7-4a2e-8d0b-040556f83dc5', 'Zuzana', 'McDonagh', 'zmcdonaghh@chronoengine.com', 'FEMALE'); 19 | insert into student (student_id, first_name, last_name, email, gender) values ('583db972-bb74-4f63-94a8-7b1efa8ae4bc', 'Christin', 'Cortese', 'ccortesei@hubpages.com', 'FEMALE'); 20 | insert into student (student_id, first_name, last_name, email, gender) values ('9c42106d-04f2-4b29-a17f-28e61203b230', 'Edy', 'Shakshaft', 'eshakshaftj@jigsy.com', 'FEMALE'); 21 | -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ---------------------------------------------------------------------------- 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # https://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # ---------------------------------------------------------------------------- 20 | 21 | # ---------------------------------------------------------------------------- 22 | # Maven2 Start Up Batch script 23 | # 24 | # Required ENV vars: 25 | # ------------------ 26 | # JAVA_HOME - location of a JDK home dir 27 | # 28 | # Optional ENV vars 29 | # ----------------- 30 | # M2_HOME - location of maven2's installed home dir 31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven 32 | # e.g. to debug Maven itself, use 33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files 35 | # ---------------------------------------------------------------------------- 36 | 37 | if [ -z "$MAVEN_SKIP_RC" ] ; then 38 | 39 | if [ -f /etc/mavenrc ] ; then 40 | . /etc/mavenrc 41 | fi 42 | 43 | if [ -f "$HOME/.mavenrc" ] ; then 44 | . "$HOME/.mavenrc" 45 | fi 46 | 47 | fi 48 | 49 | # OS specific support. $var _must_ be set to either true or false. 50 | cygwin=false; 51 | darwin=false; 52 | mingw=false 53 | case "`uname`" in 54 | CYGWIN*) cygwin=true ;; 55 | MINGW*) mingw=true;; 56 | Darwin*) darwin=true 57 | # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home 58 | # See https://developer.apple.com/library/mac/qa/qa1170/_index.html 59 | if [ -z "$JAVA_HOME" ]; then 60 | if [ -x "/usr/libexec/java_home" ]; then 61 | export JAVA_HOME="`/usr/libexec/java_home`" 62 | else 63 | export JAVA_HOME="/Library/Java/Home" 64 | fi 65 | fi 66 | ;; 67 | esac 68 | 69 | if [ -z "$JAVA_HOME" ] ; then 70 | if [ -r /etc/gentoo-release ] ; then 71 | JAVA_HOME=`java-config --jre-home` 72 | fi 73 | fi 74 | 75 | if [ -z "$M2_HOME" ] ; then 76 | ## resolve links - $0 may be a link to maven's home 77 | PRG="$0" 78 | 79 | # need this for relative symlinks 80 | while [ -h "$PRG" ] ; do 81 | ls=`ls -ld "$PRG"` 82 | link=`expr "$ls" : '.*-> \(.*\)$'` 83 | if expr "$link" : '/.*' > /dev/null; then 84 | PRG="$link" 85 | else 86 | PRG="`dirname "$PRG"`/$link" 87 | fi 88 | done 89 | 90 | saveddir=`pwd` 91 | 92 | M2_HOME=`dirname "$PRG"`/.. 93 | 94 | # make it fully qualified 95 | M2_HOME=`cd "$M2_HOME" && pwd` 96 | 97 | cd "$saveddir" 98 | # echo Using m2 at $M2_HOME 99 | fi 100 | 101 | # For Cygwin, ensure paths are in UNIX format before anything is touched 102 | if $cygwin ; then 103 | [ -n "$M2_HOME" ] && 104 | M2_HOME=`cygpath --unix "$M2_HOME"` 105 | [ -n "$JAVA_HOME" ] && 106 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 107 | [ -n "$CLASSPATH" ] && 108 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` 109 | fi 110 | 111 | # For Mingw, ensure paths are in UNIX format before anything is touched 112 | if $mingw ; then 113 | [ -n "$M2_HOME" ] && 114 | M2_HOME="`(cd "$M2_HOME"; pwd)`" 115 | [ -n "$JAVA_HOME" ] && 116 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" 117 | # TODO classpath? 118 | fi 119 | 120 | if [ -z "$JAVA_HOME" ]; then 121 | javaExecutable="`which javac`" 122 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then 123 | # readlink(1) is not available as standard on Solaris 10. 124 | readLink=`which readlink` 125 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then 126 | if $darwin ; then 127 | javaHome="`dirname \"$javaExecutable\"`" 128 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" 129 | else 130 | javaExecutable="`readlink -f \"$javaExecutable\"`" 131 | fi 132 | javaHome="`dirname \"$javaExecutable\"`" 133 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` 134 | JAVA_HOME="$javaHome" 135 | export JAVA_HOME 136 | fi 137 | fi 138 | fi 139 | 140 | if [ -z "$JAVACMD" ] ; then 141 | if [ -n "$JAVA_HOME" ] ; then 142 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 143 | # IBM's JDK on AIX uses strange locations for the executables 144 | JAVACMD="$JAVA_HOME/jre/sh/java" 145 | else 146 | JAVACMD="$JAVA_HOME/bin/java" 147 | fi 148 | else 149 | JAVACMD="`which java`" 150 | fi 151 | fi 152 | 153 | if [ ! -x "$JAVACMD" ] ; then 154 | echo "Error: JAVA_HOME is not defined correctly." >&2 155 | echo " We cannot execute $JAVACMD" >&2 156 | exit 1 157 | fi 158 | 159 | if [ -z "$JAVA_HOME" ] ; then 160 | echo "Warning: JAVA_HOME environment variable is not set." 161 | fi 162 | 163 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher 164 | 165 | # traverses directory structure from process work directory to filesystem root 166 | # first directory with .mvn subdirectory is considered project base directory 167 | find_maven_basedir() { 168 | 169 | if [ -z "$1" ] 170 | then 171 | echo "Path not specified to find_maven_basedir" 172 | return 1 173 | fi 174 | 175 | basedir="$1" 176 | wdir="$1" 177 | while [ "$wdir" != '/' ] ; do 178 | if [ -d "$wdir"/.mvn ] ; then 179 | basedir=$wdir 180 | break 181 | fi 182 | # workaround for JBEAP-8937 (on Solaris 10/Sparc) 183 | if [ -d "${wdir}" ]; then 184 | wdir=`cd "$wdir/.."; pwd` 185 | fi 186 | # end of workaround 187 | done 188 | echo "${basedir}" 189 | } 190 | 191 | # concatenates all lines of a file 192 | concat_lines() { 193 | if [ -f "$1" ]; then 194 | echo "$(tr -s '\n' ' ' < "$1")" 195 | fi 196 | } 197 | 198 | BASE_DIR=`find_maven_basedir "$(pwd)"` 199 | if [ -z "$BASE_DIR" ]; then 200 | exit 1; 201 | fi 202 | 203 | ########################################################################################## 204 | # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 205 | # This allows using the maven wrapper in projects that prohibit checking in binary data. 206 | ########################################################################################## 207 | if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then 208 | if [ "$MVNW_VERBOSE" = true ]; then 209 | echo "Found .mvn/wrapper/maven-wrapper.jar" 210 | fi 211 | else 212 | if [ "$MVNW_VERBOSE" = true ]; then 213 | echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." 214 | fi 215 | jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar" 216 | while IFS="=" read key value; do 217 | case "$key" in (wrapperUrl) jarUrl="$value"; break ;; 218 | esac 219 | done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" 220 | if [ "$MVNW_VERBOSE" = true ]; then 221 | echo "Downloading from: $jarUrl" 222 | fi 223 | wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" 224 | 225 | if command -v wget > /dev/null; then 226 | if [ "$MVNW_VERBOSE" = true ]; then 227 | echo "Found wget ... using wget" 228 | fi 229 | wget "$jarUrl" -O "$wrapperJarPath" 230 | elif command -v curl > /dev/null; then 231 | if [ "$MVNW_VERBOSE" = true ]; then 232 | echo "Found curl ... using curl" 233 | fi 234 | curl -o "$wrapperJarPath" "$jarUrl" 235 | else 236 | if [ "$MVNW_VERBOSE" = true ]; then 237 | echo "Falling back to using Java to download" 238 | fi 239 | javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" 240 | if [ -e "$javaClass" ]; then 241 | if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 242 | if [ "$MVNW_VERBOSE" = true ]; then 243 | echo " - Compiling MavenWrapperDownloader.java ..." 244 | fi 245 | # Compiling the Java class 246 | ("$JAVA_HOME/bin/javac" "$javaClass") 247 | fi 248 | if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 249 | # Running the downloader 250 | if [ "$MVNW_VERBOSE" = true ]; then 251 | echo " - Running MavenWrapperDownloader.java ..." 252 | fi 253 | ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") 254 | fi 255 | fi 256 | fi 257 | fi 258 | ########################################################################################## 259 | # End of extension 260 | ########################################################################################## 261 | 262 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} 263 | if [ "$MVNW_VERBOSE" = true ]; then 264 | echo $MAVEN_PROJECTBASEDIR 265 | fi 266 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" 267 | 268 | # For Cygwin, switch paths to Windows format before running java 269 | if $cygwin; then 270 | [ -n "$M2_HOME" ] && 271 | M2_HOME=`cygpath --path --windows "$M2_HOME"` 272 | [ -n "$JAVA_HOME" ] && 273 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` 274 | [ -n "$CLASSPATH" ] && 275 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` 276 | [ -n "$MAVEN_PROJECTBASEDIR" ] && 277 | MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` 278 | fi 279 | 280 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 281 | 282 | exec "$JAVACMD" \ 283 | $MAVEN_OPTS \ 284 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ 285 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ 286 | ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" 287 | -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- 1 | @REM ---------------------------------------------------------------------------- 2 | @REM Licensed to the Apache Software Foundation (ASF) under one 3 | @REM or more contributor license agreements. See the NOTICE file 4 | @REM distributed with this work for additional information 5 | @REM regarding copyright ownership. The ASF licenses this file 6 | @REM to you under the Apache License, Version 2.0 (the 7 | @REM "License"); you may not use this file except in compliance 8 | @REM with the License. You may obtain a copy of the License at 9 | @REM 10 | @REM https://www.apache.org/licenses/LICENSE-2.0 11 | @REM 12 | @REM Unless required by applicable law or agreed to in writing, 13 | @REM software distributed under the License is distributed on an 14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | @REM KIND, either express or implied. See the License for the 16 | @REM specific language governing permissions and limitations 17 | @REM under the License. 18 | @REM ---------------------------------------------------------------------------- 19 | 20 | @REM ---------------------------------------------------------------------------- 21 | @REM Maven2 Start Up Batch script 22 | @REM 23 | @REM Required ENV vars: 24 | @REM JAVA_HOME - location of a JDK home dir 25 | @REM 26 | @REM Optional ENV vars 27 | @REM M2_HOME - location of maven2's installed home dir 28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands 29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending 30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven 31 | @REM e.g. to debug Maven itself, use 32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files 34 | @REM ---------------------------------------------------------------------------- 35 | 36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' 37 | @echo off 38 | @REM set title of command window 39 | title %0 40 | @REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' 41 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% 42 | 43 | @REM set %HOME% to equivalent of $HOME 44 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") 45 | 46 | @REM Execute a user defined script before this one 47 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre 48 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending 49 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" 50 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" 51 | :skipRcPre 52 | 53 | @setlocal 54 | 55 | set ERROR_CODE=0 56 | 57 | @REM To isolate internal variables from possible post scripts, we use another setlocal 58 | @setlocal 59 | 60 | @REM ==== START VALIDATION ==== 61 | if not "%JAVA_HOME%" == "" goto OkJHome 62 | 63 | echo. 64 | echo Error: JAVA_HOME not found in your environment. >&2 65 | echo Please set the JAVA_HOME variable in your environment to match the >&2 66 | echo location of your Java installation. >&2 67 | echo. 68 | goto error 69 | 70 | :OkJHome 71 | if exist "%JAVA_HOME%\bin\java.exe" goto init 72 | 73 | echo. 74 | echo Error: JAVA_HOME is set to an invalid directory. >&2 75 | echo JAVA_HOME = "%JAVA_HOME%" >&2 76 | echo Please set the JAVA_HOME variable in your environment to match the >&2 77 | echo location of your Java installation. >&2 78 | echo. 79 | goto error 80 | 81 | @REM ==== END VALIDATION ==== 82 | 83 | :init 84 | 85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". 86 | @REM Fallback to current working directory if not found. 87 | 88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% 89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir 90 | 91 | set EXEC_DIR=%CD% 92 | set WDIR=%EXEC_DIR% 93 | :findBaseDir 94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound 95 | cd .. 96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound 97 | set WDIR=%CD% 98 | goto findBaseDir 99 | 100 | :baseDirFound 101 | set MAVEN_PROJECTBASEDIR=%WDIR% 102 | cd "%EXEC_DIR%" 103 | goto endDetectBaseDir 104 | 105 | :baseDirNotFound 106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% 107 | cd "%EXEC_DIR%" 108 | 109 | :endDetectBaseDir 110 | 111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig 112 | 113 | @setlocal EnableExtensions EnableDelayedExpansion 114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a 115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% 116 | 117 | :endReadAdditionalConfig 118 | 119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" 120 | set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" 121 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 122 | 123 | set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar" 124 | FOR /F "tokens=1,2 delims==" %%A IN (%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties) DO ( 125 | IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B 126 | ) 127 | 128 | @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 129 | @REM This allows using the maven wrapper in projects that prohibit checking in binary data. 130 | if exist %WRAPPER_JAR% ( 131 | echo Found %WRAPPER_JAR% 132 | ) else ( 133 | echo Couldn't find %WRAPPER_JAR%, downloading it ... 134 | echo Downloading from: %DOWNLOAD_URL% 135 | powershell -Command "(New-Object Net.WebClient).DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')" 136 | echo Finished downloading %WRAPPER_JAR% 137 | ) 138 | @REM End of extension 139 | 140 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* 141 | if ERRORLEVEL 1 goto error 142 | goto end 143 | 144 | :error 145 | set ERROR_CODE=1 146 | 147 | :end 148 | @endlocal & set ERROR_CODE=%ERROR_CODE% 149 | 150 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost 151 | @REM check for post script, once with legacy .bat ending and once with .cmd ending 152 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" 153 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" 154 | :skipRcPost 155 | 156 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' 157 | if "%MAVEN_BATCH_PAUSE%" == "on" pause 158 | 159 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% 160 | 161 | exit /B %ERROR_CODE% 162 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | org.springframework.boot 7 | spring-boot-starter-parent 8 | 2.1.3.RELEASE 9 | 10 | 11 | com.amigoscode 12 | demo 13 | 0.0.1-SNAPSHOT 14 | demo 15 | Demo project for Spring Boot 16 | 17 | 18 | 11 19 | 1.6 20 | v10.13.0 21 | v1.12.1 22 | 23 | 24 | 25 | 26 | org.springframework.boot 27 | spring-boot-starter-jdbc 28 | 29 | 30 | org.springframework.boot 31 | spring-boot-starter-web 32 | 33 | 34 | org.flywaydb 35 | flyway-core 36 | 37 | 38 | 39 | org.postgresql 40 | postgresql 41 | runtime 42 | 43 | 44 | org.springframework.boot 45 | spring-boot-starter-test 46 | test 47 | 48 | 49 | org.assertj 50 | assertj-core 51 | 3.12.2 52 | test 53 | 54 | 55 | 56 | 57 | 58 | 59 | org.springframework.boot 60 | spring-boot-maven-plugin 61 | 62 | 63 | 64 | 65 | 66 | 67 | demo 68 | 69 | 70 | 71 | com.github.eirslett 72 | frontend-maven-plugin 73 | ${frontend-maven-plugin.version} 74 | 75 | src/js 76 | 77 | 78 | 79 | install node 80 | 81 | install-node-and-yarn 82 | 83 | 84 | ${node.version} 85 | ${yarn.version} 86 | 87 | 88 | 89 | yarn install 90 | 91 | yarn 92 | 93 | generate-resources 94 | 95 | 96 | yarn test 97 | 98 | yarn 99 | 100 | test 101 | 102 | test 103 | 104 | true 105 | 106 | 107 | 108 | 109 | yarn build 110 | 111 | yarn 112 | 113 | compile 114 | 115 | build 116 | 117 | 118 | 119 | 120 | 121 | maven-resources-plugin 122 | 123 | 124 | copy-resources 125 | process-classes 126 | 127 | copy-resources 128 | 129 | 130 | ${basedir}/target/classes/static 131 | 132 | 133 | src/js/build 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | demo 145 | 146 | 147 | 148 | 149 | demo-compile-to-java-8 150 | 151 | 152 | 153 | com.github.eirslett 154 | frontend-maven-plugin 155 | ${frontend-maven-plugin.version} 156 | 157 | src/js 158 | 159 | 160 | 161 | install node 162 | 163 | install-node-and-yarn 164 | 165 | 166 | ${node.version} 167 | ${yarn.version} 168 | 169 | 170 | 171 | yarn install 172 | 173 | yarn 174 | 175 | generate-resources 176 | 177 | 178 | yarn test 179 | 180 | yarn 181 | 182 | test 183 | 184 | test 185 | 186 | true 187 | 188 | 189 | 190 | 191 | yarn build 192 | 193 | yarn 194 | 195 | compile 196 | 197 | build 198 | 199 | 200 | 201 | 202 | 203 | maven-resources-plugin 204 | 205 | 206 | copy-resources 207 | process-classes 208 | 209 | copy-resources 210 | 211 | 212 | ${basedir}/target/classes/static 213 | 214 | 215 | src/js/build 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | org.apache.maven.plugins 224 | maven-compiler-plugin 225 | 226 | 1.8 227 | 1.8 228 | 229 | 230 | 231 | 232 | 233 | 234 | demo 235 | 236 | 237 | 238 | 239 | 240 | 241 | -------------------------------------------------------------------------------- /src/js/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 2 | 3 | ## Available Scripts 4 | 5 | In the project directory, you can run: 6 | 7 | ### `npm start` 8 | 9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 11 | 12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console. 14 | 15 | ### `npm test` 16 | 17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 19 | 20 | ### `npm run build` 21 | 22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance. 24 | 25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed! 27 | 28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 29 | 30 | ### `npm run eject` 31 | 32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 33 | 34 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 35 | 36 | Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 37 | 38 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 39 | 40 | ## Learn More 41 | 42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 43 | 44 | To learn React, check out the [React documentation](https://reactjs.org/). 45 | 46 | ### Code Splitting 47 | 48 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting 49 | 50 | ### Analyzing the Bundle Size 51 | 52 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size 53 | 54 | ### Making a Progressive Web App 55 | 56 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app 57 | 58 | ### Advanced Configuration 59 | 60 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration 61 | 62 | ### Deployment 63 | 64 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment 65 | 66 | ### `npm run build` fails to minify 67 | 68 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify 69 | -------------------------------------------------------------------------------- /src/js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "js", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "antd": "^3.15.2", 7 | "formik": "^1.5.2", 8 | "react": "^16.8.6", 9 | "react-dom": "^16.8.6", 10 | "react-scripts": "2.1.8", 11 | "unfetch": "^4.1.0" 12 | }, 13 | "scripts": { 14 | "start": "react-scripts start", 15 | "build": "react-scripts build", 16 | "test": "react-scripts test", 17 | "eject": "react-scripts eject" 18 | }, 19 | "eslintConfig": { 20 | "extends": "react-app" 21 | }, 22 | "proxy": "http://localhost:8080", 23 | "browserslist": [ 24 | ">0.2%", 25 | "not dead", 26 | "not ie <= 11", 27 | "not op_mini all" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amigoscode/spring-boot-react-fullstack/9771153b5e52ea78262bc5259555a34386cb5da1/src/js/public/favicon.ico -------------------------------------------------------------------------------- /src/js/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 15 | 16 | 25 | React App 26 | 27 | 28 | 29 |
30 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /src/js/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /src/js/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 40vmin; 8 | pointer-events: none; 9 | } 10 | 11 | .App-header { 12 | background-color: #282c34; 13 | min-height: 100vh; 14 | display: flex; 15 | flex-direction: column; 16 | align-items: center; 17 | justify-content: center; 18 | font-size: calc(10px + 2vmin); 19 | color: white; 20 | } 21 | 22 | .App-link { 23 | color: #61dafb; 24 | } 25 | 26 | @keyframes App-logo-spin { 27 | from { 28 | transform: rotate(0deg); 29 | } 30 | to { 31 | transform: rotate(360deg); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/js/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component, Fragment } from 'react'; 2 | import Container from './Container'; 3 | import Footer from './Footer'; 4 | import './App.css'; 5 | import { 6 | getAllStudents, 7 | updateStudent, 8 | deleteStudent 9 | } from './client'; 10 | import AddStudentForm from './forms/AddStudentForm'; 11 | import EditStudentForm from './forms/EditStudentForm'; 12 | import { errorNotification } from './Notification'; 13 | import { 14 | Table, 15 | Avatar, 16 | Spin, 17 | Icon, 18 | Modal, 19 | Empty, 20 | PageHeader, 21 | Button, 22 | notification, 23 | Popconfirm 24 | } from 'antd'; 25 | 26 | const getIndicatorIcon = () => ; 27 | 28 | class App extends Component { 29 | 30 | state = { 31 | students: [], 32 | isFetching: false, 33 | selectedStudent: {}, 34 | isAddStudentModalVisisble: false, 35 | isEditStudentModalVisible: false, 36 | } 37 | 38 | componentDidMount () { 39 | this.fetchStudents(); 40 | } 41 | 42 | openAddStudentModal = () => this.setState({isAddStudentModalVisisble: true}) 43 | 44 | closeAddStudentModal = () => this.setState({isAddStudentModalVisisble: false}) 45 | 46 | openEditStudentModal = () => this.setState({ isEditStudentModalVisible: true }) 47 | 48 | closeEditStudentModal = () => this.setState({ isEditStudentModalVisible: false }) 49 | 50 | openNotificationWithIcon = (type, message, description) => notification[type]({message, description}); 51 | 52 | fetchStudents = () => { 53 | this.setState({ 54 | isFetching: true 55 | }); 56 | getAllStudents() 57 | .then(res => res.json() 58 | .then(students => { 59 | console.log(students); 60 | this.setState({ 61 | students, 62 | isFetching: false 63 | }); 64 | })) 65 | .catch(error => { 66 | console.log(error.error); 67 | const message = error.error.message; 68 | const description = error.error.error; 69 | errorNotification(message, description); 70 | this.setState({ 71 | isFetching: false 72 | }); 73 | }); 74 | } 75 | 76 | editUser = selectedStudent => { 77 | this.setState({ selectedStudent }); 78 | this.openEditStudentModal(); 79 | } 80 | 81 | updateStudentFormSubmitter = student => { 82 | updateStudent(student.studentId, student).then(() => { 83 | this.openNotificationWithIcon('success', 'Student updated', `${student.studentId} was updated`); 84 | this.closeEditStudentModal(); 85 | this.fetchStudents(); 86 | }).catch(err => { 87 | console.error(err.error); 88 | this.openNotificationWithIcon('error', 'error', `(${err.error.status}) ${err.error.error}`); 89 | }); 90 | } 91 | 92 | deleteStudent = studentId => { 93 | deleteStudent(studentId).then(() => { 94 | this.openNotificationWithIcon('success', 'Student deleted', `${studentId} was deleted`); 95 | this.fetchStudents(); 96 | }).catch(err => { 97 | this.openNotificationWithIcon('error', 'error', `(${err.error.status}) ${err.error.error}`); 98 | }); 99 | } 100 | 101 | render() { 102 | 103 | const { students, isFetching, isAddStudentModalVisisble } = this.state; 104 | 105 | const commonElements = () => ( 106 |
107 | 113 | { 115 | this.closeAddStudentModal(); 116 | this.fetchStudents(); 117 | }} 118 | onFailure={(error) => { 119 | const message = error.error.message; 120 | const description = error.error.httpStatus; 121 | errorNotification(message, description); 122 | }} 123 | /> 124 | 125 | 126 | 132 | 133 | 134 | 135 | 138 | 139 | 140 |
144 |
145 | ) 146 | 147 | if (isFetching) { 148 | return ( 149 | 150 | 151 | 152 | ); 153 | } 154 | 155 | if (students && students.length) { 156 | const columns = [ 157 | { 158 | title: '', 159 | key: 'avatar', 160 | render: (text, student) => ( 161 | 162 | {`${student.firstName.charAt(0).toUpperCase()}${student.lastName.charAt(0).toUpperCase()}`} 163 | 164 | ) 165 | }, 166 | { 167 | title: 'Student Id', 168 | dataIndex: 'studentId', 169 | key: 'studentId' 170 | }, 171 | { 172 | title: 'First Name', 173 | dataIndex: 'firstName', 174 | key: 'firstName' 175 | }, 176 | { 177 | title: 'Last Name', 178 | dataIndex: 'lastName', 179 | key: 'lastName' 180 | }, 181 | { 182 | title: 'Email', 183 | dataIndex: 'email', 184 | key: 'email' 185 | }, 186 | { 187 | title: 'Gender', 188 | dataIndex: 'gender', 189 | key: 'gender' 190 | }, 191 | { 192 | title: 'Action', 193 | key: 'action', 194 | render: (text, record) => ( 195 | 196 | this.deleteStudent(record.studentId)} okText='Yes' cancelText='No' 200 | onCancel={e => e.stopPropagation()}> 201 | 202 | 203 | 204 | 205 | ), 206 | } 207 | ]; 208 | 209 | return ( 210 | 211 | 217 | {commonElements()} 218 | 219 | ); 220 | 221 | } 222 | 223 | return ( 224 | 225 | No Students found 227 | }/> 228 | {commonElements()} 229 | 230 | ) 231 | } 232 | } 233 | 234 | export default App; 235 | -------------------------------------------------------------------------------- /src/js/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | ReactDOM.unmountComponentAtNode(div); 9 | }); 10 | -------------------------------------------------------------------------------- /src/js/src/Container.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const Container = props => ( 4 |
5 | {props.children} 6 |
7 | ); 8 | 9 | export default Container; -------------------------------------------------------------------------------- /src/js/src/Footer.css: -------------------------------------------------------------------------------- 1 | .footer { 2 | position: fixed; 3 | bottom: 0; 4 | left: 0; 5 | right: 0; 6 | background: rgba(240, 240, 240, 0.9); 7 | height: 5em; 8 | padding: 1em; 9 | } -------------------------------------------------------------------------------- /src/js/src/Footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Container from './Container'; 3 | import { Button, Avatar } from 'antd'; 4 | import './Footer.css'; 5 | 6 | const Footer = (props) => ( 7 |
8 | 9 | {props.numberOfStudents !== undefined ? 10 | {props.numberOfStudents} : null 13 | } 14 | 15 | 16 |
17 | ); 18 | 19 | export default Footer; -------------------------------------------------------------------------------- /src/js/src/Notification.js: -------------------------------------------------------------------------------- 1 | import { notification } from 'antd'; 2 | 3 | const openNotification = (type, message, description) => { 4 | notification[type]({ 5 | message, 6 | description 7 | }); 8 | }; 9 | 10 | export const successNotification = (message, description) => 11 | openNotification('sucess', message, description); 12 | 13 | export const infosNotification = (message, description) => 14 | openNotification('info', message, description); 15 | 16 | export const warningNotification = (message, description) => 17 | openNotification('warning', message, description); 18 | 19 | export const errorNotification = (message, description) => 20 | openNotification('error', message, description); 21 | -------------------------------------------------------------------------------- /src/js/src/client.js: -------------------------------------------------------------------------------- 1 | import fetch from 'unfetch'; 2 | 3 | const checkStatus = response => { 4 | if (response.ok) { 5 | return response; 6 | } else { 7 | let error = new Error(response.statusText); 8 | error.response = response; 9 | response.json().then(e => { 10 | error.error = e; 11 | }); 12 | return Promise.reject(error); 13 | } 14 | } 15 | 16 | export const getAllStudents = () => 17 | fetch('api/students').then(checkStatus); 18 | 19 | export const addNewStudent = student => 20 | fetch('api/students', { 21 | headers: { 22 | 'Content-Type': 'application/json' 23 | }, 24 | method: 'POST', 25 | body: JSON.stringify(student) 26 | }) 27 | .then(checkStatus); 28 | 29 | export const updateStudent = (studentId, student) => 30 | fetch(`api/students/${studentId}`, { 31 | headers: { 32 | 'Content-Type': 'application/json' 33 | }, 34 | method: 'PUT', 35 | body: JSON.stringify(student) 36 | }) 37 | .then(checkStatus); 38 | 39 | export const deleteStudent = studentId => 40 | fetch(`api/students/${studentId}`, { 41 | method: 'DELETE' 42 | }) 43 | .then(checkStatus); 44 | 45 | -------------------------------------------------------------------------------- /src/js/src/forms/AddStudentForm.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Formik } from 'formik'; 3 | import { Input, Button, Tag } from 'antd'; 4 | import { addNewStudent } from '../client'; 5 | 6 | const inputBottomMargin = {marginBottom: '10px'}; 7 | const tagStyle = {backgroundColor: '#f50', color: 'white', ...inputBottomMargin}; 8 | 9 | const AddStudentForm = (props) => ( 10 | { 13 | let errors = {}; 14 | 15 | if (!values.firstName) { 16 | errors.firstName = 'First Name Required' 17 | } 18 | 19 | if (!values.lastName) { 20 | errors.lastName = 'Last Name Required' 21 | } 22 | 23 | if (!values.email) { 24 | errors.email = 'Email Required'; 25 | } else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(values.email)) { 26 | errors.email = 'Invalid email address'; 27 | } 28 | 29 | if (!values.gender) { 30 | errors.gender = 'Gender Required'; 31 | } else if (!['MALE', 'male', 'FEMALE', 'female'].includes(values.gender)) { 32 | errors.gender = 'Gender must be (MALE, male, FEMALE, female)'; 33 | } 34 | 35 | return errors; 36 | }} 37 | onSubmit={(student, { setSubmitting }) => { 38 | addNewStudent(student).then(() => { 39 | props.onSuccess(); 40 | }) 41 | .catch(err => { 42 | props.onFailure(err); 43 | }) 44 | .finally(() => { 45 | setSubmitting(false); 46 | }) 47 | }}> 48 | {({ 49 | values, 50 | errors, 51 | touched, 52 | handleChange, 53 | handleBlur, 54 | handleSubmit, 55 | isSubmitting, 56 | submitForm, 57 | isValid 58 | /* and other goodies */ 59 | }) => ( 60 |
61 | 69 | {errors.firstName && touched.firstName && 70 | {errors.firstName}} 71 | 79 | {errors.lastName && touched.lastName && 80 | {errors.lastName}} 81 | 90 | {errors.email && touched.email && 91 | {errors.email}} 92 | 100 | {errors.gender && touched.gender && 101 | {errors.gender}} 102 | 108 | 109 | )} 110 |
111 | ); 112 | 113 | 114 | export default AddStudentForm; -------------------------------------------------------------------------------- /src/js/src/forms/EditStudentForm.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import { Formik } from 'formik'; 3 | import { Input, Tag, Button } from 'antd'; 4 | 5 | export default class EditUserForm extends Component { 6 | render () { 7 | const { submitter, initialValues } = this.props; 8 | return ( 9 | { 12 | let errors = {}; 13 | if (!values.email) { 14 | errors.email = 'Required'; 15 | } else if ( 16 | !/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(values.email) 17 | ) { 18 | errors.email = 'Invalid email address'; 19 | } 20 | if (!values.firstName) { 21 | errors.firstName = 'First name required'; 22 | } 23 | if (!values.lastName) { 24 | errors.lastName = 'Last name required'; 25 | } 26 | return errors; 27 | }} 28 | onSubmit={(values, { setSubmitting }) => { 29 | console.log(values) 30 | submitter(values); 31 | setSubmitting(false); 32 | }} 33 | > 34 | {({ 35 | values, 36 | errors, 37 | touched, 38 | handleChange, 39 | isValid, 40 | handleBlur, 41 | handleSubmit, 42 | isSubmitting, 43 | submitForm 44 | /* and other goodies */ 45 | }) => ( 46 |
47 | 54 | {errors.firstName && touched.firstName && {errors.firstName}} 55 | 56 | 63 | {errors.lastName && touched.lastName && {errors.lastName}} 64 | 65 | 73 | {errors.email && touched.email && {errors.email}} 74 | 75 | 78 | 79 | )} 80 |
81 | ) 82 | } 83 | } -------------------------------------------------------------------------------- /src/js/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 5 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 6 | sans-serif; 7 | -webkit-font-smoothing: antialiased; 8 | -moz-osx-font-smoothing: grayscale; 9 | } 10 | 11 | code { 12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 13 | monospace; 14 | } 15 | -------------------------------------------------------------------------------- /src/js/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import 'antd/dist/antd.css'; 4 | import './index.css'; 5 | import App from './App'; 6 | import * as serviceWorker from './serviceWorker'; 7 | 8 | ReactDOM.render(, document.getElementById('root')); 9 | 10 | // If you want your app to work offline and load faster, you can change 11 | // unregister() to register() below. Note this comes with some pitfalls. 12 | // Learn more about service workers: https://bit.ly/CRA-PWA 13 | serviceWorker.unregister(); 14 | -------------------------------------------------------------------------------- /src/js/src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/js/src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read https://bit.ly/CRA-PWA 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.1/8 is considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | if (installingWorker == null) { 64 | return; 65 | } 66 | installingWorker.onstatechange = () => { 67 | if (installingWorker.state === 'installed') { 68 | if (navigator.serviceWorker.controller) { 69 | // At this point, the updated precached content has been fetched, 70 | // but the previous service worker will still serve the older 71 | // content until all client tabs are closed. 72 | console.log( 73 | 'New content is available and will be used when all ' + 74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75 | ); 76 | 77 | // Execute callback 78 | if (config && config.onUpdate) { 79 | config.onUpdate(registration); 80 | } 81 | } else { 82 | // At this point, everything has been precached. 83 | // It's the perfect time to display a 84 | // "Content is cached for offline use." message. 85 | console.log('Content is cached for offline use.'); 86 | 87 | // Execute callback 88 | if (config && config.onSuccess) { 89 | config.onSuccess(registration); 90 | } 91 | } 92 | } 93 | }; 94 | }; 95 | }) 96 | .catch(error => { 97 | console.error('Error during service worker registration:', error); 98 | }); 99 | } 100 | 101 | function checkValidServiceWorker(swUrl, config) { 102 | // Check if the service worker can be found. If it can't reload the page. 103 | fetch(swUrl) 104 | .then(response => { 105 | // Ensure service worker exists, and that we really are getting a JS file. 106 | const contentType = response.headers.get('content-type'); 107 | if ( 108 | response.status === 404 || 109 | (contentType != null && contentType.indexOf('javascript') === -1) 110 | ) { 111 | // No service worker found. Probably a different app. Reload the page. 112 | navigator.serviceWorker.ready.then(registration => { 113 | registration.unregister().then(() => { 114 | window.location.reload(); 115 | }); 116 | }); 117 | } else { 118 | // Service worker found. Proceed as normal. 119 | registerValidSW(swUrl, config); 120 | } 121 | }) 122 | .catch(() => { 123 | console.log( 124 | 'No internet connection found. App is running in offline mode.' 125 | ); 126 | }); 127 | } 128 | 129 | export function unregister() { 130 | if ('serviceWorker' in navigator) { 131 | navigator.serviceWorker.ready.then(registration => { 132 | registration.unregister(); 133 | }); 134 | } 135 | } 136 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/DemoApplication.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class DemoApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(DemoApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/EmailValidator.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo; 2 | 3 | import org.springframework.stereotype.Component; 4 | 5 | import java.util.function.Predicate; 6 | import java.util.regex.Pattern; 7 | 8 | @Component 9 | public class EmailValidator implements Predicate { 10 | 11 | private static final Predicate IS_EMAIL_VALID = 12 | Pattern.compile( 13 | "^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}$", 14 | Pattern.CASE_INSENSITIVE 15 | ).asPredicate(); 16 | 17 | @Override 18 | public boolean test(String email) { 19 | return IS_EMAIL_VALID.test(email); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/datasource/Datasource.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.datasource; 2 | 3 | import com.zaxxer.hikari.HikariDataSource; 4 | import org.springframework.boot.context.properties.ConfigurationProperties; 5 | import org.springframework.boot.jdbc.DataSourceBuilder; 6 | import org.springframework.context.annotation.Bean; 7 | import org.springframework.context.annotation.Configuration; 8 | 9 | @Configuration 10 | public class Datasource { 11 | 12 | @Bean 13 | @ConfigurationProperties("app.datasource") 14 | public HikariDataSource hikariDataSource() { 15 | return DataSourceBuilder 16 | .create() 17 | .type(HikariDataSource.class) 18 | .build(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/exception/ApiException.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.exception; 2 | 3 | import org.springframework.http.HttpStatus; 4 | 5 | import java.time.ZonedDateTime; 6 | 7 | public class ApiException { 8 | 9 | private final String message; 10 | private final HttpStatus httpStatus; 11 | private final ZonedDateTime timestamp; 12 | 13 | public ApiException(String message, 14 | HttpStatus httpStatus, 15 | ZonedDateTime timestamp) { 16 | this.message = message; 17 | this.httpStatus = httpStatus; 18 | this.timestamp = timestamp; 19 | } 20 | 21 | public String getMessage() { 22 | return message; 23 | } 24 | 25 | public HttpStatus getHttpStatus() { 26 | return httpStatus; 27 | } 28 | 29 | public ZonedDateTime getTimestamp() { 30 | return timestamp; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/exception/ApiExceptionHandler.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.exception; 2 | 3 | import org.springframework.http.HttpStatus; 4 | import org.springframework.http.ResponseEntity; 5 | import org.springframework.web.bind.annotation.ControllerAdvice; 6 | import org.springframework.web.bind.annotation.ExceptionHandler; 7 | import org.springframework.web.context.request.WebRequest; 8 | 9 | import java.time.ZoneId; 10 | import java.time.ZonedDateTime; 11 | 12 | @ControllerAdvice 13 | public class ApiExceptionHandler { 14 | 15 | @ExceptionHandler(value = {ApiRequestException.class}) 16 | public ResponseEntity handleApiRequestException(ApiRequestException e, WebRequest webRequest) { 17 | // 1. Create payload containing exception details 18 | HttpStatus badRequest = HttpStatus.BAD_REQUEST; 19 | 20 | ApiException apiException = new ApiException( 21 | e.getMessage(), 22 | badRequest, 23 | ZonedDateTime.now(ZoneId.of("Z")) 24 | ); 25 | // 2. Return response entity 26 | return new ResponseEntity<>(apiException, badRequest); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/exception/ApiRequestException.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.exception; 2 | 3 | public class ApiRequestException extends RuntimeException { 4 | 5 | public ApiRequestException(String message) { 6 | super(message); 7 | } 8 | 9 | public ApiRequestException(String message, Throwable cause) { 10 | super(message, cause); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/student/Student.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.student; 2 | 3 | import com.fasterxml.jackson.annotation.JsonProperty; 4 | 5 | import javax.validation.constraints.NotBlank; 6 | import javax.validation.constraints.NotNull; 7 | import java.util.UUID; 8 | 9 | public class Student { 10 | 11 | private final UUID studentId; 12 | 13 | @NotBlank 14 | private final String firstName; 15 | 16 | @NotBlank 17 | private final String lastName; 18 | 19 | @NotBlank 20 | private final String email; 21 | 22 | @NotNull 23 | private final Gender gender; 24 | 25 | public Student(@JsonProperty("studentId") UUID studentId, 26 | @JsonProperty("firstName") String firstName, 27 | @JsonProperty("lastName") String lastName, 28 | @JsonProperty("email") String email, 29 | @JsonProperty("gender") Gender gender) { 30 | this.studentId = studentId; 31 | this.firstName = firstName; 32 | this.lastName = lastName; 33 | this.email = email; 34 | this.gender = gender; 35 | } 36 | 37 | public UUID getStudentId() { 38 | return studentId; 39 | } 40 | 41 | public String getFirstName() { 42 | return firstName; 43 | } 44 | 45 | public String getLastName() { 46 | return lastName; 47 | } 48 | 49 | public String getEmail() { 50 | return email; 51 | } 52 | 53 | public Gender getGender() { 54 | return gender; 55 | } 56 | 57 | @Override 58 | public String toString() { 59 | return "Student{" + 60 | "studentId=" + studentId + 61 | ", firstName='" + firstName + '\'' + 62 | ", lastName='" + lastName + '\'' + 63 | ", email='" + email + '\'' + 64 | ", gender=" + gender + 65 | '}'; 66 | } 67 | 68 | enum Gender { 69 | MALE, FEMALE 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/student/StudentController.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.student; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.web.bind.annotation.*; 5 | 6 | import javax.validation.Valid; 7 | import java.util.List; 8 | import java.util.UUID; 9 | 10 | @RestController 11 | @RequestMapping("api/students") 12 | public class StudentController { 13 | 14 | private final StudentService studentService; 15 | 16 | @Autowired 17 | public StudentController(StudentService studentService) { 18 | this.studentService = studentService; 19 | } 20 | 21 | @GetMapping 22 | public List getAllStudents() { 23 | return studentService.getAllStudents(); 24 | } 25 | 26 | @GetMapping(path = "{studentId}/courses") 27 | public List getAllCoursesForStudent( 28 | @PathVariable("studentId") UUID studentId) { 29 | return studentService.getAllCoursesForStudent(studentId); 30 | } 31 | 32 | @PostMapping 33 | public void addNewStudent(@RequestBody @Valid Student student) { 34 | studentService.addNewStudent(student); 35 | } 36 | 37 | @PutMapping(path = "{studentId}") 38 | public void updateStudent(@PathVariable("studentId") UUID studentId, 39 | @RequestBody Student student) { 40 | studentService.updateStudent(studentId, student); 41 | } 42 | 43 | @DeleteMapping("{studentId}") 44 | public void deleteStudent(@PathVariable("studentId") UUID studentId) { 45 | studentService.deleteStudent(studentId); 46 | } 47 | 48 | } 49 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/student/StudentCourse.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.student; 2 | 3 | import java.time.LocalDate; 4 | import java.util.UUID; 5 | 6 | public class StudentCourse { 7 | 8 | private final UUID studentId; 9 | private final UUID courseId; 10 | private final String name; 11 | private final String description; 12 | private final String department; 13 | private final String teacherName; 14 | private final LocalDate startDate; 15 | private final LocalDate endDate; 16 | private final Integer grade; 17 | 18 | public StudentCourse(UUID studentId, 19 | UUID courseId, 20 | String name, 21 | String description, 22 | String department, 23 | String teacherName, 24 | LocalDate startDate, 25 | LocalDate endDate, 26 | Integer grade) { 27 | this.studentId = studentId; 28 | this.courseId = courseId; 29 | this.name = name; 30 | this.description = description; 31 | this.department = department; 32 | this.teacherName = teacherName; 33 | this.startDate = startDate; 34 | this.endDate = endDate; 35 | this.grade = grade; 36 | } 37 | 38 | public UUID getStudentId() { 39 | return studentId; 40 | } 41 | 42 | public UUID getCourseId() { 43 | return courseId; 44 | } 45 | 46 | public String getName() { 47 | return name; 48 | } 49 | 50 | public String getDescription() { 51 | return description; 52 | } 53 | 54 | public String getDepartment() { 55 | return department; 56 | } 57 | 58 | public String getTeacherName() { 59 | return teacherName; 60 | } 61 | 62 | 63 | public LocalDate getStartDate() { 64 | return startDate; 65 | } 66 | 67 | public LocalDate getEndDate() { 68 | return endDate; 69 | } 70 | 71 | public Integer getGrade() { 72 | return grade; 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/student/StudentDataAccessService.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.student; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.jdbc.core.JdbcTemplate; 5 | import org.springframework.jdbc.core.RowMapper; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | import java.util.Optional; 10 | import java.util.UUID; 11 | 12 | @Repository 13 | public class StudentDataAccessService { 14 | 15 | private final JdbcTemplate jdbcTemplate; 16 | 17 | @Autowired 18 | public StudentDataAccessService(JdbcTemplate jdbcTemplate) { 19 | this.jdbcTemplate = jdbcTemplate; 20 | } 21 | 22 | List selectAllStudents() { 23 | String sql = "" + 24 | "SELECT " + 25 | " student_id, " + 26 | " first_name, " + 27 | " last_name, " + 28 | " email, " + 29 | " gender " + 30 | "FROM student"; 31 | 32 | return jdbcTemplate.query(sql, mapStudentFomDb()); 33 | } 34 | 35 | int insertStudent(UUID studentId, Student student) { 36 | String sql = "" + 37 | "INSERT INTO student (" + 38 | " student_id, " + 39 | " first_name, " + 40 | " last_name, " + 41 | " email, " + 42 | " gender) " + 43 | "VALUES (?, ?, ?, ?, ?::gender)"; 44 | return jdbcTemplate.update( 45 | sql, 46 | studentId, 47 | student.getFirstName(), 48 | student.getLastName(), 49 | student.getEmail(), 50 | student.getGender().name().toUpperCase() 51 | ); 52 | } 53 | 54 | @SuppressWarnings("ConstantConditions") 55 | boolean isEmailTaken(String email) { 56 | String sql = "" + 57 | "SELECT EXISTS ( " + 58 | " SELECT 1 " + 59 | " FROM student " + 60 | " WHERE email = ?" + 61 | ")"; 62 | return jdbcTemplate.queryForObject( 63 | sql, 64 | new Object[]{email}, 65 | (resultSet, i) -> resultSet.getBoolean(1) 66 | ); 67 | } 68 | 69 | List selectAllStudentCourses(UUID studentId) { 70 | String sql = "" + 71 | "SELECT " + 72 | " student.student_id, " + 73 | " course.course_id, " + 74 | " course.name, " + 75 | " course.description," + 76 | " course.department," + 77 | " course.teacher_name," + 78 | " student_course.start_date, " + 79 | " student_course.end_date, " + 80 | " student_course.grade " + 81 | "FROM student " + 82 | "JOIN student_course USING (student_id) " + 83 | "JOIN course USING (course_id) " + 84 | "WHERE student.student_id = ?"; 85 | return jdbcTemplate.query( 86 | sql, 87 | new Object[]{studentId}, 88 | mapStudentCourseFromDb() 89 | ); 90 | } 91 | 92 | private RowMapper mapStudentCourseFromDb() { 93 | return (resultSet, i) -> 94 | new StudentCourse( 95 | UUID.fromString(resultSet.getString("student_id")), 96 | UUID.fromString(resultSet.getString("course_id")), 97 | resultSet.getString("name"), 98 | resultSet.getString("description"), 99 | resultSet.getString("department"), 100 | resultSet.getString("teacher_name"), 101 | resultSet.getDate("start_date").toLocalDate(), 102 | resultSet.getDate("end_date").toLocalDate(), 103 | Optional.ofNullable(resultSet.getString("grade")) 104 | .map(Integer::parseInt) 105 | .orElse(null) 106 | ); 107 | } 108 | 109 | private RowMapper mapStudentFomDb() { 110 | return (resultSet, i) -> { 111 | String studentIdStr = resultSet.getString("student_id"); 112 | UUID studentId = UUID.fromString(studentIdStr); 113 | 114 | String firstName = resultSet.getString("first_name"); 115 | String lastName = resultSet.getString("last_name"); 116 | String email = resultSet.getString("email"); 117 | 118 | String genderStr = resultSet.getString("gender").toUpperCase(); 119 | Student.Gender gender = Student.Gender.valueOf(genderStr); 120 | return new Student( 121 | studentId, 122 | firstName, 123 | lastName, 124 | email, 125 | gender 126 | ); 127 | }; 128 | } 129 | 130 | int updateEmail(UUID studentId, String email) { 131 | String sql = "" + 132 | "UPDATE student " + 133 | "SET email = ? " + 134 | "WHERE student_id = ?"; 135 | return jdbcTemplate.update(sql, email, studentId); 136 | } 137 | 138 | int updateFirstName(UUID studentId, String firstName) { 139 | String sql = "" + 140 | "UPDATE student " + 141 | "SET first_name = ? " + 142 | "WHERE student_id = ?"; 143 | return jdbcTemplate.update(sql, firstName, studentId); 144 | } 145 | 146 | int updateLastName(UUID studentId, String lastName) { 147 | String sql = "" + 148 | "UPDATE student " + 149 | "SET last_name = ? " + 150 | "WHERE student_id = ?"; 151 | return jdbcTemplate.update(sql, lastName, studentId); 152 | } 153 | 154 | @SuppressWarnings("ConstantConditions") 155 | boolean selectExistsEmail(UUID studentId, String email) { 156 | String sql = "" + 157 | "SELECT EXISTS ( " + 158 | " SELECT 1 " + 159 | " FROM student " + 160 | " WHERE student_id <> ? " + 161 | " AND email = ? " + 162 | ")"; 163 | return jdbcTemplate.queryForObject( 164 | sql, 165 | new Object[]{studentId, email}, 166 | (resultSet, columnIndex) -> resultSet.getBoolean(1) 167 | ); 168 | } 169 | 170 | int deleteStudentById(UUID studentId) { 171 | String sql = "" + 172 | "DELETE FROM student " + 173 | "WHERE student_id = ?"; 174 | return jdbcTemplate.update(sql, studentId); 175 | } 176 | } 177 | -------------------------------------------------------------------------------- /src/main/java/com/amigoscode/demo/student/StudentService.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo.student; 2 | 3 | import com.amigoscode.demo.EmailValidator; 4 | import com.amigoscode.demo.exception.ApiRequestException; 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | import org.springframework.util.StringUtils; 8 | 9 | import java.util.List; 10 | import java.util.Optional; 11 | import java.util.UUID; 12 | 13 | @Service 14 | public class StudentService { 15 | 16 | private final StudentDataAccessService studentDataAccessService; 17 | private final EmailValidator emailValidator; 18 | 19 | @Autowired 20 | public StudentService(StudentDataAccessService studentDataAccessService, 21 | EmailValidator emailValidator) { 22 | this.studentDataAccessService = studentDataAccessService; 23 | this.emailValidator = emailValidator; 24 | } 25 | 26 | List getAllStudents() { 27 | return studentDataAccessService.selectAllStudents(); 28 | } 29 | 30 | void addNewStudent(Student student) { 31 | addNewStudent(null, student); 32 | } 33 | 34 | void addNewStudent(UUID studentId, Student student) { 35 | UUID newStudentId = Optional.ofNullable(studentId) 36 | .orElse(UUID.randomUUID()); 37 | 38 | if (!emailValidator.test(student.getEmail())) { 39 | throw new ApiRequestException(student.getEmail() + " is not valid"); 40 | } 41 | 42 | if (studentDataAccessService.isEmailTaken(student.getEmail())) { 43 | throw new ApiRequestException(student.getEmail() + " is taken"); 44 | } 45 | 46 | studentDataAccessService.insertStudent(newStudentId, student); 47 | } 48 | 49 | List getAllCoursesForStudent(UUID studentId) { 50 | return studentDataAccessService.selectAllStudentCourses(studentId); 51 | } 52 | 53 | public void updateStudent(UUID studentId, Student student) { 54 | Optional.ofNullable(student.getEmail()) 55 | .ifPresent(email -> { 56 | boolean taken = studentDataAccessService.selectExistsEmail(studentId, email); 57 | if (!taken) { 58 | studentDataAccessService.updateEmail(studentId, email); 59 | } else { 60 | throw new IllegalStateException("Email already in use: " + student.getEmail()); 61 | } 62 | }); 63 | 64 | Optional.ofNullable(student.getFirstName()) 65 | .filter(fistName -> !StringUtils.isEmpty(fistName)) 66 | .map(StringUtils::capitalize) 67 | .ifPresent(firstName -> studentDataAccessService.updateFirstName(studentId, firstName)); 68 | 69 | Optional.ofNullable(student.getLastName()) 70 | .filter(lastName -> !StringUtils.isEmpty(lastName)) 71 | .map(StringUtils::capitalize) 72 | .ifPresent(lastName -> studentDataAccessService.updateLastName(studentId, lastName)); 73 | } 74 | 75 | void deleteStudent(UUID studentId) { 76 | studentDataAccessService.deleteStudentById(studentId); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/main/resources/application-demo.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: @spring.profiles.active@ 4 | 5 | server: 6 | port: 5000 7 | 8 | app: 9 | datasource: 10 | jdbc-url: jdbc:postgresql://fullstackspringbootdb.celswdmxhcr1.eu-west-1.rds.amazonaws.com:5432/amigoscodedemo 11 | username: amigoscode 12 | password: 123456789 13 | pool-size: 30 -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: @spring.profiles.active@ 4 | 5 | app: 6 | datasource: 7 | jdbc-url: jdbc:postgresql://localhost:5432/amigoscodedemo 8 | username: postgres 9 | password: password 10 | pool-size: 30 -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1__CreateStudentTable.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS student ( 2 | student_id UUID PRIMARY KEY NOT NULL, 3 | first_name VARCHAR(100) NOT NULL, 4 | last_name VARCHAR(100) NOT NULL, 5 | email VARCHAR(100) NOT NULL UNIQUE, 6 | gender VARCHAR(6) NOT NULL 7 | CHECK ( 8 | gender = 'MALE' OR 9 | gender = 'male' OR 10 | gender = 'FEMALE' OR 11 | gender = 'female' 12 | ) 13 | ); 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/db/migration/V2__CreateStundetCourseTables.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS course ( 2 | course_id UUID NOT NULL PRIMARY KEY, 3 | name VARCHAR(255) NOT NULL UNIQUE, 4 | description TEXT NOT NULL, 5 | department VARCHAR(255), 6 | teacher_name VARCHAR(100) 7 | ); 8 | 9 | CREATE TABLE IF NOT EXISTS student_course ( 10 | student_id UUID NOT NULL REFERENCES student (student_id), 11 | course_id UUID NOT NULL REFERENCES course (course_id), 12 | start_date DATE NOT NULL, 13 | end_date DATE NOT NULL, 14 | grade INTEGER CHECK (grade >= 0 AND grade <= 100), 15 | UNIQUE (student_id, course_id) 16 | ); -------------------------------------------------------------------------------- /src/main/resources/db/migration/V3__AddNullContraintToCourseDepartment.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE course ALTER department SET NOT NULL; -------------------------------------------------------------------------------- /src/main/resources/db/migration/V4__GenderEnum.sql: -------------------------------------------------------------------------------- 1 | CREATE TYPE gender AS ENUM ('MALE', 'FEMALE'); 2 | 3 | ALTER TABLE student 4 | ALTER COLUMN gender TYPE gender 5 | USING (gender::gender) -------------------------------------------------------------------------------- /src/main/resources/db/migration/V5__DropsStudentGenderCheckConstraint.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE student 2 | DROP CONSTRAINT IF EXISTS student_gender_check; -------------------------------------------------------------------------------- /src/main/resources/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amigoscode/spring-boot-react-fullstack/9771153b5e52ea78262bc5259555a34386cb5da1/src/main/resources/static/.gitkeep -------------------------------------------------------------------------------- /src/test/java/com/amigoscode/demo/EmailValidatorTest.java: -------------------------------------------------------------------------------- 1 | package com.amigoscode.demo; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.assertj.core.api.Assertions.assertThat; 6 | 7 | public class EmailValidatorTest { 8 | 9 | private final EmailValidator underTest = new EmailValidator(); 10 | 11 | @Test 12 | public void itShouldValidateCorrectEmail() { 13 | assertThat(underTest.test("hello@gmail.com")).isTrue(); 14 | } 15 | 16 | @Test 17 | public void itShouldValidateAnIncorrectEmail() { 18 | assertThat(underTest.test("hellogmail.com")).isFalse(); 19 | } 20 | 21 | @Test 22 | public void itShouldValidateAnIncorrectEmailWithoutDotAtTheEnd() { 23 | assertThat(underTest.test("hello@gmail")).isFalse(); 24 | } 25 | } --------------------------------------------------------------------------------