From 9fe9723a292aa48868a0559ae1865de35351cb97 Mon Sep 17 00:00:00 2001 From: zhang-yi0678 <1149591237> Date: Tue, 6 Dec 2022 15:56:06 +0800 Subject: [PATCH 1/2] first # Conflicts: # README.md --- .gitignore | 31 ++ .mvn/wrapper/MavenWrapperDownloader.java | 118 +++++++ .mvn/wrapper/maven-wrapper.jar | Bin 0 -> 50710 bytes .mvn/wrapper/maven-wrapper.properties | 2 + SpringBoot.md | 9 + mvnw | 322 ++++++++++++++++++ mvnw.cmd | 182 ++++++++++ pom.xml | 174 ++++++++++ .../zhang/StudySpringBootApplication.java | 15 + .../zhang/aspect/ControllerAspect.java | 61 ++++ .../student/zhang/aspect/ServiceAspect.java | 119 +++++++ .../com/student/zhang/aspect/TestAspect.java | 22 ++ .../java/com/student/zhang/bean/Page.java | 51 +++ .../student/zhang/config/WebMvcConfig.java | 26 ++ .../zhang/controller/BaseController.java | 38 +++ .../controller/BorrowRecordController.java | 32 ++ .../zhang/controller/ClazzController.java | 53 +++ .../zhang/controller/CourseController.java | 55 +++ .../zhang/controller/FileController.java | 145 ++++++++ .../zhang/controller/ScoreController.java | 82 +++++ .../zhang/controller/StudentController.java | 80 +++++ .../zhang/controller/TeacherController.java | 59 ++++ .../zhang/controller/UserController.java | 184 ++++++++++ .../student/zhang/entity/BorrowRecord.java | 33 ++ .../java/com/student/zhang/entity/Clazz.java | 34 ++ .../java/com/student/zhang/entity/Course.java | 38 +++ .../java/com/student/zhang/entity/Score.java | 40 +++ .../com/student/zhang/entity/Student.java | 95 ++++++ .../com/student/zhang/entity/SystemLog.java | 47 +++ .../com/student/zhang/entity/Teacher.java | 33 ++ .../java/com/student/zhang/entity/User.java | 32 ++ .../exception/ServiceValidationException.java | 21 ++ .../zhang/handler/GlobalExceptionHandler.java | 68 ++++ .../interceptor/ServiceMethodInterceptor.java | 27 ++ .../zhang/interceptor/TokenInterceptor.java | 45 +++ .../student/zhang/listener/MyListener.java | 77 +++++ .../zhang/mapper/IBorrowRecordMapper.java | 45 +++ .../student/zhang/mapper/IClazzMapper.java | 79 +++++ .../student/zhang/mapper/ICourseMapper.java | 119 +++++++ .../student/zhang/mapper/IScoreMapper.java | 129 +++++++ .../student/zhang/mapper/IStudentMapper.java | 145 ++++++++ .../zhang/mapper/ISystemLogMapper.java | 58 ++++ .../student/zhang/mapper/ITeacherMapper.java | 91 +++++ .../com/student/zhang/mapper/IUserMapper.java | 55 +++ .../zhang/service/IBorrowRecordService.java | 26 ++ .../student/zhang/service/IClazzService.java | 34 ++ .../student/zhang/service/ICourseService.java | 27 ++ .../student/zhang/service/IScoreService.java | 44 +++ .../zhang/service/IStudentService.java | 45 +++ .../zhang/service/ISystemLogService.java | 26 ++ .../zhang/service/ITeacherService.java | 28 ++ .../student/zhang/service/IUserService.java | 35 ++ .../service/impl/BorrowRecordServiceImpl.java | 43 +++ .../zhang/service/impl/ClazzServiceImpl.java | 59 ++++ .../zhang/service/impl/CourseServiceImpl.java | 56 +++ .../zhang/service/impl/ScoreServiceImpl.java | 78 +++++ .../service/impl/StudentServiceImpl.java | 119 +++++++ .../service/impl/SystemLogServiceImpl.java | 61 ++++ .../service/impl/TeacherServiceImpl.java | 57 ++++ .../zhang/service/impl/UserServiceImpl.java | 57 ++++ .../student/zhang/utils/SecurityUtils.java | 35 ++ .../com/student/zhang/utils/ServletUtils.java | 28 ++ .../com/student/zhang/utils/TokenUtils.java | 58 ++++ .../com/student/zhang/utils/ViewUtils.java | 35 ++ src/main/resources/application.yml | 21 ++ src/main/resources/banner.txt | 13 + src/main/resources/mapper/clazz.xml | 55 +++ src/main/resources/mapper/course.xml | 74 ++++ src/main/resources/mapper/score.xml | 95 ++++++ src/main/resources/mapper/student.xml | 91 +++++ src/main/resources/mapper/systemLog.xml | 43 +++ src/main/resources/mapper/teacher.xml | 59 ++++ src/main/resources/mapper/user.xml | 22 ++ .../StudySpringBootApplicationTests.java | 36 ++ 74 files changed, 4631 insertions(+) create mode 100644 .gitignore create mode 100644 .mvn/wrapper/MavenWrapperDownloader.java create mode 100644 .mvn/wrapper/maven-wrapper.jar create mode 100644 .mvn/wrapper/maven-wrapper.properties create mode 100644 SpringBoot.md create mode 100644 mvnw create mode 100644 mvnw.cmd create mode 100644 pom.xml create mode 100644 src/main/java/com/student/zhang/StudySpringBootApplication.java create mode 100644 src/main/java/com/student/zhang/aspect/ControllerAspect.java create mode 100644 src/main/java/com/student/zhang/aspect/ServiceAspect.java create mode 100644 src/main/java/com/student/zhang/aspect/TestAspect.java create mode 100644 src/main/java/com/student/zhang/bean/Page.java create mode 100644 src/main/java/com/student/zhang/config/WebMvcConfig.java create mode 100644 src/main/java/com/student/zhang/controller/BaseController.java create mode 100644 src/main/java/com/student/zhang/controller/BorrowRecordController.java create mode 100644 src/main/java/com/student/zhang/controller/ClazzController.java create mode 100644 src/main/java/com/student/zhang/controller/CourseController.java create mode 100644 src/main/java/com/student/zhang/controller/FileController.java create mode 100644 src/main/java/com/student/zhang/controller/ScoreController.java create mode 100644 src/main/java/com/student/zhang/controller/StudentController.java create mode 100644 src/main/java/com/student/zhang/controller/TeacherController.java create mode 100644 src/main/java/com/student/zhang/controller/UserController.java create mode 100644 src/main/java/com/student/zhang/entity/BorrowRecord.java create mode 100644 src/main/java/com/student/zhang/entity/Clazz.java create mode 100644 src/main/java/com/student/zhang/entity/Course.java create mode 100644 src/main/java/com/student/zhang/entity/Score.java create mode 100644 src/main/java/com/student/zhang/entity/Student.java create mode 100644 src/main/java/com/student/zhang/entity/SystemLog.java create mode 100644 src/main/java/com/student/zhang/entity/Teacher.java create mode 100644 src/main/java/com/student/zhang/entity/User.java create mode 100644 src/main/java/com/student/zhang/exception/ServiceValidationException.java create mode 100644 src/main/java/com/student/zhang/handler/GlobalExceptionHandler.java create mode 100644 src/main/java/com/student/zhang/interceptor/ServiceMethodInterceptor.java create mode 100644 src/main/java/com/student/zhang/interceptor/TokenInterceptor.java create mode 100644 src/main/java/com/student/zhang/listener/MyListener.java create mode 100644 src/main/java/com/student/zhang/mapper/IBorrowRecordMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/IClazzMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/ICourseMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/IScoreMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/IStudentMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/ISystemLogMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/ITeacherMapper.java create mode 100644 src/main/java/com/student/zhang/mapper/IUserMapper.java create mode 100644 src/main/java/com/student/zhang/service/IBorrowRecordService.java create mode 100644 src/main/java/com/student/zhang/service/IClazzService.java create mode 100644 src/main/java/com/student/zhang/service/ICourseService.java create mode 100644 src/main/java/com/student/zhang/service/IScoreService.java create mode 100644 src/main/java/com/student/zhang/service/IStudentService.java create mode 100644 src/main/java/com/student/zhang/service/ISystemLogService.java create mode 100644 src/main/java/com/student/zhang/service/ITeacherService.java create mode 100644 src/main/java/com/student/zhang/service/IUserService.java create mode 100644 src/main/java/com/student/zhang/service/impl/BorrowRecordServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/ClazzServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/CourseServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/ScoreServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/StudentServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/SystemLogServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/TeacherServiceImpl.java create mode 100644 src/main/java/com/student/zhang/service/impl/UserServiceImpl.java create mode 100644 src/main/java/com/student/zhang/utils/SecurityUtils.java create mode 100644 src/main/java/com/student/zhang/utils/ServletUtils.java create mode 100644 src/main/java/com/student/zhang/utils/TokenUtils.java create mode 100644 src/main/java/com/student/zhang/utils/ViewUtils.java create mode 100644 src/main/resources/application.yml create mode 100644 src/main/resources/banner.txt create mode 100644 src/main/resources/mapper/clazz.xml create mode 100644 src/main/resources/mapper/course.xml create mode 100644 src/main/resources/mapper/score.xml create mode 100644 src/main/resources/mapper/student.xml create mode 100644 src/main/resources/mapper/systemLog.xml create mode 100644 src/main/resources/mapper/teacher.xml create mode 100644 src/main/resources/mapper/user.xml create mode 100644 src/test/java/com/student/zhang/StudySpringBootApplicationTests.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a2a3040 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java new file mode 100644 index 0000000..a45eb6b --- /dev/null +++ b/.mvn/wrapper/MavenWrapperDownloader.java @@ -0,0 +1,118 @@ +/* + * Copyright 2007-present the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if (mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if (mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if (!outputFile.getParentFile().exists()) { + if (!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..2cc7d4a55c0cd0092912bf49ae38b3a9e3fd0054 GIT binary patch literal 50710 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 EfAhh=DF6Tf literal 0 HcmV?d00001 diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..642d572 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/SpringBoot.md b/SpringBoot.md new file mode 100644 index 0000000..0291570 --- /dev/null +++ b/SpringBoot.md @@ -0,0 +1,9 @@ +# SpringBoot + 众所周知 Spring 应用需要进行大量的配置,各种 XML 配置和注解配置让人眼花缭乱,且极容易出错,因此 Spring 一度被称为“配置地狱”。 + 为了简化 Spring 应用的搭建和开发过程,Pivotal 团队在 Spring 基础上提供了一套全新的开源的框架,它就是 Spring Boot。 + SpringBoot = Spring + SpringMVC + 其他框架 + 单元测试 + 内置Tomcat + +## SpringBoot的新注解 + @SpringBootApplication 应用于SpringBoot主应用入口程序 + @MapperScan 用于配置MyBatis的Mapper路径 + diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..3c8a553 --- /dev/null +++ b/mvnw @@ -0,0 +1,322 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ]; then + + if [ -f /etc/mavenrc ]; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ]; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false +darwin=false +mingw=false +case "$(uname)" in +CYGWIN*) cygwin=true ;; +MINGW*) mingw=true ;; +Darwin*) + darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="$(/usr/libexec/java_home)" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ]; then + if [ -r /etc/gentoo-release ]; then + JAVA_HOME=$(java-config --jre-home) + fi +fi + +if [ -z "$M2_HOME" ]; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ]; do + ls=$(ls -ld "$PRG") + link=$(expr "$ls" : '.*-> \(.*\)$') + if expr "$link" : '/.*' >/dev/null; then + PRG="$link" + else + PRG="$(dirname "$PRG")/$link" + fi + done + + saveddir=$(pwd) + + M2_HOME=$(dirname "$PRG")/.. + + # make it fully qualified + M2_HOME=$(cd "$M2_HOME" && pwd) + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=$(cygpath --unix "$M2_HOME") + [ -n "$JAVA_HOME" ] && + JAVA_HOME=$(cygpath --unix "$JAVA_HOME") + [ -n "$CLASSPATH" ] && + CLASSPATH=$(cygpath --path --unix "$CLASSPATH") +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw; then + [ -n "$M2_HOME" ] && + M2_HOME="$( ( + cd "$M2_HOME" + pwd + ))" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="$( ( + cd "$JAVA_HOME" + pwd + ))" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="$(which javac)" + if [ -n "$javaExecutable" ] && ! [ "$(expr \"$javaExecutable\" : '\([^ ]*\)')" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=$(which readlink) + if [ ! $(expr "$readLink" : '\([^ ]*\)') = "no" ]; then + if $darwin; then + javaHome="$(dirname \"$javaExecutable\")" + javaExecutable="$(cd \"$javaHome\" && pwd -P)/javac" + else + javaExecutable="$(readlink -f \"$javaExecutable\")" + fi + javaHome="$(dirname \"$javaExecutable\")" + javaHome=$(expr "$javaHome" : '\(.*\)/bin') + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ]; then + if [ -n "$JAVA_HOME" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="$(which java)" + fi +fi + +if [ ! -x "$JAVACMD" ]; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ]; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ]; then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ]; do + if [ -d "$wdir"/.mvn ]; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=$( + cd "$wdir/.." + pwd + ) + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' <"$1")" + fi +} + +BASE_DIR=$(find_maven_basedir "$(pwd)") +if [ -z "$BASE_DIR" ]; then + exit 1 +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in wrapperUrl) + jarUrl="$value" + break + ;; + esac + done <"$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=$(cygpath --path --windows "$wrapperJarPath") + fi + + if command -v wget >/dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl >/dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=$(cygpath --path --windows "$javaClass") + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=$(cygpath --path --windows "$M2_HOME") + [ -n "$JAVA_HOME" ] && + JAVA_HOME=$(cygpath --path --windows "$JAVA_HOME") + [ -n "$CLASSPATH" ] && + CLASSPATH=$(cygpath --path --windows "$CLASSPATH") + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=$(cygpath --path --windows "$MAVEN_PROJECTBASEDIR") +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..c8d4337 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,182 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..63b480e --- /dev/null +++ b/pom.xml @@ -0,0 +1,174 @@ + + + 4.0.0 + com.student.zhang + study-springboot + 0.0.1-SNAPSHOT + Study-SpringBoot + Demo project for Spring Boot + + + 1.8 + UTF-8 + UTF-8 + 2.3.7.RELEASE + + + + + org.springframework.boot + spring-boot-starter-data-jdbc + + + + + + + + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-websocket + + + + + + + + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + 2.1.4 + + + + + javax + javaee-api + 8.0 + + + + com.auth0 + java-jwt + 4.0.0 + + + + com.alibaba + fastjson + 1.2.83 + + + + org.aspectj + aspectjrt + 1.9.6 + + + org.aspectj + aspectjtools + 1.9.6 + + + org.aspectj + aspectjweaver + 1.9.6 + + + org.springframework.boot + spring-boot-starter-validation + + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + + mysql + mysql-connector-java + runtime + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + UTF-8 + + + + org.springframework.boot + spring-boot-maven-plugin + 2.3.7.RELEASE + + com.student.zhang.StudySpringBootApplication + + + + repackage + + repackage + + + + + + + + diff --git a/src/main/java/com/student/zhang/StudySpringBootApplication.java b/src/main/java/com/student/zhang/StudySpringBootApplication.java new file mode 100644 index 0000000..6a2270b --- /dev/null +++ b/src/main/java/com/student/zhang/StudySpringBootApplication.java @@ -0,0 +1,15 @@ +package com.student.zhang; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan(value = "com.student.zhang.mapper") +public class StudySpringBootApplication { + + public static void main(String[] args) { + SpringApplication.run(StudySpringBootApplication.class, args); + } + +} diff --git a/src/main/java/com/student/zhang/aspect/ControllerAspect.java b/src/main/java/com/student/zhang/aspect/ControllerAspect.java new file mode 100644 index 0000000..a247cd7 --- /dev/null +++ b/src/main/java/com/student/zhang/aspect/ControllerAspect.java @@ -0,0 +1,61 @@ +package com.student.zhang.aspect; + +import lombok.extern.slf4j.Slf4j; +import org.aspectj.lang.ProceedingJoinPoint; +import org.aspectj.lang.annotation.Around; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Pointcut; +import org.springframework.stereotype.Component; +import org.springframework.validation.BindingResult; +import org.springframework.validation.ObjectError; + +import javax.validation.ValidationException; +import java.util.List; +import java.util.stream.Collectors; + +/** + * 定义 Controller的切面 + */ +@Slf4j +@Aspect +@Component +public class ControllerAspect { + + /** + * 定义切入点 + */ + @Pointcut("execution(* com.student.zhang.controller.*.*(..))") + private void method() {} + + + /** + * 定义环绕通知 + * @param joinPoint 加入点 + */ + @Around("method()") + public Object actionAround(ProceedingJoinPoint joinPoint) throws Throwable { + List errors = null; //定义的BindingResult中的异常信息 + for (Object arg : joinPoint.getArgs()) { + if (arg instanceof BindingResult) { +// List collect = ((BindingResult) arg).getAllErrors().stream().distinct().collect(Collectors +// .toList()); + BindingResult result = (BindingResult) arg; //定义检验绑定结果对象 + errors = result.getAllErrors().stream().distinct().collect(Collectors.toList()); + break; + } + } + if (errors != null && errors.size() > 0) { //说明有验证信息 + StringBuilder stringBuffer = new StringBuilder(); + for (ObjectError error : errors) { + log.error("JSR异常:" + error.getDefaultMessage()); + stringBuffer.append(",").append(error.getDefaultMessage()); + } + stringBuffer.deleteCharAt(0); //去掉第1个“,” + //这里抛出这个异常的目的:是为了阻断程序的运行 + throw new ValidationException(stringBuffer.toString()); + } + return joinPoint.proceed(); + } + + +} diff --git a/src/main/java/com/student/zhang/aspect/ServiceAspect.java b/src/main/java/com/student/zhang/aspect/ServiceAspect.java new file mode 100644 index 0000000..93e8bce --- /dev/null +++ b/src/main/java/com/student/zhang/aspect/ServiceAspect.java @@ -0,0 +1,119 @@ +package com.student.zhang.aspect; + +import com.student.zhang.entity.Clazz; +import com.student.zhang.entity.SystemLog; + +import com.student.zhang.service.ISystemLogService; +import lombok.extern.slf4j.Slf4j; +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.ProceedingJoinPoint; +import org.aspectj.lang.annotation.*; +import org.springframework.stereotype.Component; + +import javax.annotation.Resource; +import java.time.LocalDateTime; +import java.util.List; + +/** + * 定义 Service接口的切面 + */ +@Slf4j +//@Aspect +@Component +public class ServiceAspect { + + /** + * 定义切入点 + */ + @Pointcut("execution(* com.student.zhang.service.impl.*ServiceImpl.*(..))") + private void method() {} + + + /** + * 定义前置通知 + * @param joinPoint 加入点 + */ + @Before("method()") + public void actionBefore(JoinPoint joinPoint) { + System.out.println("actionBefore------------------------------"); + log.debug("增加的前置代码...执行方法:" + joinPoint.getSignature().getName() + "\t参数数量:" + joinPoint.getArgs().length + "\t" + LocalDateTime.now()); + recordSystemLog(joinPoint.getSignature().toShortString(), "前置通知", joinPoint.getArgs().length, ""); + } + + + /** + * 定义返回结果通知 + * @param joinPoint 加入点 + * @param object 返回结果 + */ + @AfterReturning(pointcut = "method()", returning = "object") + public void actionReturning(JoinPoint joinPoint, Object object) { + log.debug("增加的获取返回结果代码...执行方法:" + joinPoint.getSignature().getName() + "\t返回:" + (object != null ? object : "无") + "\t" + LocalDateTime.now()); + recordSystemLog(joinPoint.getSignature().toShortString(), "返回结果通知", joinPoint.getArgs().length, object != null ? object : ""); + } + + /** + * 定义后置通知 + * @param joinPoint 加入点 + */ + @After("method()") + public void actionAfter(JoinPoint joinPoint) { + log.debug("增加的后置代码...执行方法:" + joinPoint.getSignature().getName() + "\t" + LocalDateTime.now()); + recordSystemLog(joinPoint.getSignature().toShortString(), "后置通知", joinPoint.getArgs().length, ""); + } + + /** + * 定义异常通知 + * @param joinPoint 加入点 + * @param e 触发的异常 + */ + @AfterThrowing(pointcut = "method()", throwing = "e") + public void actionThrowing(JoinPoint joinPoint, Exception e) { + log.debug("增加的处理异常的代码...异常:" + e.getMessage() + "\t" + LocalDateTime.now()); + recordSystemLog(joinPoint.getSignature().toShortString(), "异常通知", joinPoint.getArgs().length, e.getMessage()); + } + + + /** + * 定义环绕通知 + * @param joinPoint 加入点 + */ + @Around("method()") + public Object actionAround(ProceedingJoinPoint joinPoint) throws Throwable { + log.debug("增加的环绕代码...执行方法:" + joinPoint.getSignature().getName() + "\t" + joinPoint.getSignature().toShortString() + "\t" + joinPoint.getTarget() + "\t" + LocalDateTime.now()); + + //执行原来的方法,并获取其返回结果赋值于result + Object result = joinPoint.proceed(); + switch (joinPoint.getSignature().toShortString()) { + case "ClazzServiceImpl.list()": + //对原来获取的结果进行手动干预(改值) + List clazzList = (List) result; + clazzList.add(new Clazz(20, "六年级1班")); + clazzList.remove(0); + return clazzList; + } + + + recordSystemLog(joinPoint.getSignature().toShortString(), "环绕通知", joinPoint.getArgs().length, result); + return result; + } + + + @Resource + ISystemLogService systemLogService; + + /** + * 记录操作日志 + * @param method + * @param notice + * @param paramCount + * @param returnValue + */ + private void recordSystemLog(String method, String notice, int paramCount, Object returnValue) { + SystemLog systemLog = new SystemLog(method, notice, paramCount, returnValue.toString()); + //保存日志 + systemLogService.save(systemLog); + } + + +} diff --git a/src/main/java/com/student/zhang/aspect/TestAspect.java b/src/main/java/com/student/zhang/aspect/TestAspect.java new file mode 100644 index 0000000..47686d5 --- /dev/null +++ b/src/main/java/com/student/zhang/aspect/TestAspect.java @@ -0,0 +1,22 @@ +package com.student.zhang.aspect; + +import lombok.extern.slf4j.Slf4j; +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.annotation.Before; +import org.aspectj.lang.annotation.Pointcut; + +//@Component +//@Aspect +@Slf4j +public class TestAspect { + + @Pointcut("execution(* com.student.zhang.service.impl.StudentServiceImpl.*(..))") + public void method() { + } + + @Before("method()") + public void testBefore(JoinPoint joinPoint) { + log.info("前置通知————执行的方法名称:" + joinPoint.getSignature().getName()); + } + +} diff --git a/src/main/java/com/student/zhang/bean/Page.java b/src/main/java/com/student/zhang/bean/Page.java new file mode 100644 index 0000000..41b398c --- /dev/null +++ b/src/main/java/com/student/zhang/bean/Page.java @@ -0,0 +1,51 @@ +package com.student.zhang.bean; + +import java.util.List; + +/** + * 分页类 + */ +public class Page { + + private int total = 0; //总记录数 + private int pageIndex = 1; //当前页码 + private int pageSize; //页大小 + private int pageCount; //页数 + private List records; //返回的数据集合 + + public Page(int pageIndex, int pageSize) { + this.pageIndex = pageIndex; + this.pageSize = pageSize; + } + + public int getTotal() { + return total; + } + + public void setTotal(int total) { + this.total = total; + if (total > 0) { + this.pageCount = (int) Math.ceil((double)total / (double) pageSize); + } + } + + public int getPageIndex() { + return pageIndex; + } + + public int getPageSize() { + return pageSize; + } + + public int getPageCount() { + return pageCount; + } + + public List getRecords() { + return records; + } + + public void setRecords(List records) { + this.records = records; + } +} diff --git a/src/main/java/com/student/zhang/config/WebMvcConfig.java b/src/main/java/com/student/zhang/config/WebMvcConfig.java new file mode 100644 index 0000000..8a97159 --- /dev/null +++ b/src/main/java/com/student/zhang/config/WebMvcConfig.java @@ -0,0 +1,26 @@ +package com.student.zhang.config; + +import com.student.zhang.interceptor.TokenInterceptor; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +/** + * @author By Zhang + */ +@Configuration +public class WebMvcConfig implements WebMvcConfigurer { + + + /** + * 添加一个拦截器 + * @param registry + */ + @Override + public void addInterceptors(InterceptorRegistry registry) { + TokenInterceptor tokenInterceptor = new TokenInterceptor(); + registry.addInterceptor(tokenInterceptor) + .addPathPatterns("/**") + .excludePathPatterns("/user/login"); + } +} diff --git a/src/main/java/com/student/zhang/controller/BaseController.java b/src/main/java/com/student/zhang/controller/BaseController.java new file mode 100644 index 0000000..1c4ff39 --- /dev/null +++ b/src/main/java/com/student/zhang/controller/BaseController.java @@ -0,0 +1,38 @@ +package com.student.zhang.controller; + + +import com.student.zhang.utils.ViewUtils; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +public class BaseController { + + @Resource + HttpServletRequest request; + @Resource + HttpServletResponse response; + + /** + * 成功 + * @param message + * @param value + * @return + */ + protected Object success(String message, Object value) { + return ViewUtils.view(message, value, 200); + } + + /** + * 失败 + * @param message + * @param state + * @return + */ + protected Object fail(String message, int state) { + response.setStatus(state); + return ViewUtils.view(message, null ,state); + } + +} diff --git a/src/main/java/com/student/zhang/controller/BorrowRecordController.java b/src/main/java/com/student/zhang/controller/BorrowRecordController.java new file mode 100644 index 0000000..f7c4f2e --- /dev/null +++ b/src/main/java/com/student/zhang/controller/BorrowRecordController.java @@ -0,0 +1,32 @@ +package com.student.zhang.controller; + +import com.student.zhang.entity.BorrowRecord; +import com.student.zhang.service.IBorrowRecordService; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import java.sql.SQLException; + +/** + * @author By Zhang + */ +@RestController +@RequestMapping("borrowRecord") +public class BorrowRecordController extends BaseController{ + + @Resource + IBorrowRecordService borrowRecordService; + + @PostMapping("update") + public Object update(@RequestBody BorrowRecord borrowRecord){ + borrowRecordService.save(borrowRecord); + return success("success",null) ; + } + + + @GetMapping + public Object getRecord() throws SQLException { + int borrowRecord = borrowRecordService.getBorrowRecord(); + return success("success",borrowRecord); + } +} diff --git a/src/main/java/com/student/zhang/controller/ClazzController.java b/src/main/java/com/student/zhang/controller/ClazzController.java new file mode 100644 index 0000000..adf5d57 --- /dev/null +++ b/src/main/java/com/student/zhang/controller/ClazzController.java @@ -0,0 +1,53 @@ +package com.student.zhang.controller; + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Clazz; +import com.student.zhang.service.IClazzService; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; + +/** + * 班级类控制器 + */ +@RestController +@RequestMapping("clazz") +public class ClazzController extends BaseController { + + @Resource + IClazzService clazzService; + + /** + * 获取班级列表 + * @return + */ + @PostMapping + public Object index(Integer pageIndex) { + Page clazzPage = clazzService.list(pageIndex); + return success("success", clazzPage); + } + + /** + * 新增/编辑 + * @return + */ + @PostMapping("edit") + public Object edit(@Valid @RequestBody Clazz clazz, BindingResult result) { + clazzService.save(clazz); + return success("success", null); + } + + /** + * 删除 + * @param id + * @return + */ + @PostMapping("delete") + public Object delete(@RequestParam String id) { + clazzService.remove(Integer.parseInt(id)); + return success("success", null) ; + } + +} diff --git a/src/main/java/com/student/zhang/controller/CourseController.java b/src/main/java/com/student/zhang/controller/CourseController.java new file mode 100644 index 0000000..780d93c --- /dev/null +++ b/src/main/java/com/student/zhang/controller/CourseController.java @@ -0,0 +1,55 @@ +package com.student.zhang.controller; + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Course; +import com.student.zhang.service.ICourseService; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; + +/** + * 课程类控制器 + */ +@RestController +@RequestMapping("course") +public class CourseController extends BaseController { + + @Resource + ICourseService courseService; + + /** + * 课程列表 + * @param pageIndex + * @return + */ + @PostMapping("list") + public Object index( Integer pageIndex){ + Page coursePage = courseService.list(pageIndex); + return success("success", coursePage); + } + + /** + * 新增/编辑 + * @param course + * @return + */ + @PostMapping("edit") + public Object edit(@Valid @RequestBody Course course, BindingResult result){ + courseService.save(course); + return success("success", null) ; + } + + /** + * 删除课程 + * @param id + * @return + */ + @GetMapping("delete/{id}") + public Object delete(@PathVariable Integer id){ + courseService.remove(id); + return success("success", null) ; + } + +} diff --git a/src/main/java/com/student/zhang/controller/FileController.java b/src/main/java/com/student/zhang/controller/FileController.java new file mode 100644 index 0000000..cdc9af2 --- /dev/null +++ b/src/main/java/com/student/zhang/controller/FileController.java @@ -0,0 +1,145 @@ +package com.student.zhang.controller; + + +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.service.IUserService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; + +import javax.annotation.Resource; +import javax.servlet.ServletOutputStream; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.sql.SQLException; + +/** + * 文件相关控制器 + */ +@Slf4j +@RestController +@RequestMapping("file") +public class FileController extends BaseController { + + /** + * 文件上传 + * @param partFile + * @return + * @throws IOException + */ + @PostMapping("upload") + public Object upload(@ModelAttribute MultipartFile partFile) throws IOException { + //获取图片名称 + String fileName = partFile.getOriginalFilename(); //获取原始文件名 + /* + partFile.getOriginalFilename() ==> baiqian.jpg + */ +// String fileName = new Date().getTime() + partFile.getOriginalFilename().substring(partFile.getOriginalFilename().indexOf(".")); + //设置文件保存的路径 + String uploadPath = request.getServletContext().getInitParameter("uploadPath"); + File fileFolderPath = new File(uploadPath); + if (!fileFolderPath.exists()) fileFolderPath.mkdirs(); //如果上传路径不存在,则创建上传路径 + log.info("uploadPath:" + uploadPath); + //创建一个保存文件 + File storeFile = new File(fileFolderPath + "/" + fileName); + partFile.transferTo(storeFile); //保存文件到指定File对象,并写到磁盘上 + return success(null,"/upload/" + fileName); + } + + /** + * 文件列表 + * @return + */ + @GetMapping("list") + public Object list() { + String uploadPath = request.getServletContext().getInitParameter("uploadPath"); + File fileFolderPath = new File(uploadPath); + String[] files = fileFolderPath.list(); + return success(null, files); + } + + /** + * 文件下载 + * @param fileName + * @throws IOException + */ + @Resource + IUserService userService; +// @GetMapping("download/{token}/{flag}/{fileName}") 使用超链接调整去实现文件下载 + @GetMapping("download/{flag}/{fileName}") + public void download(@PathVariable String fileName, @PathVariable String flag) throws IOException, SQLException { + String account = (String) request.getAttribute("sign"); //获取当前下载者的学生账号 + if (account == null) { + throw new ServiceValidationException("No permission, please log in first.", 401); + } + log.info(account + "进入下载,文件:" + fileName); + userService.downloadFile(account); //每下载一次,就余额就减少deMoney元 + + //请求响应头 + response.setHeader("Content-Type", "application/x-msdownload"); + response.setHeader("Content-Disposition", "attachment;filename=" + toUTF8String(fileName)); + //获取文件保存的路径 + String uploadPath = request.getServletContext().getInitParameter("uploadPath"); + File file = new File(uploadPath + "/" + fileName); //获取要下载的文件对象 + log.info("file:"+file); + if (!file.exists()) { + throw new ServiceValidationException("file is not exits", 402); + } + //输入流 + FileInputStream inputStream = new FileInputStream(file); + //输出流 + ServletOutputStream outputStream = response.getOutputStream(); + outputStream.flush(); + int read = 0; //读取次数 + byte[] bytes = new byte[1024]; + while (inputStream != null && (read = inputStream.read(bytes)) != -1) { + outputStream.write(bytes, 0, read); + } + //把文件流输出 + outputStream.flush(); + //关闭流 + inputStream.close(); + outputStream.close(); + } + + + /** + * 下载文件的文件名的字符编码转换 + * @param str + * @return + */ + private String toUTF8String(String str) { + StringBuffer stringBuffer = new StringBuffer(); + int length = str.length(); + for (int i = 0; i< length; i++) { + //取出字符串中的每个字符 + char c = str.charAt(i); + //Unicode码值为0~255时,不做处理 + if (c >= 0 && c <= 255) { + stringBuffer.append(c); + } else { + //进行UTF-8转码 + byte b[]; + try{ + b = Character.toString(c).getBytes("UTF-8"); + } catch (UnsupportedEncodingException exception) { + exception.printStackTrace(); + b = null; + } + //转换为%HH的字符串形式 + for (int j = 0; j < b.length; j++) { + int k = b[j]; + if (k < 0) { + k &= 255; + } + stringBuffer.append("%" + Integer.toHexString(k).toUpperCase()); + } + } + } + return stringBuffer.toString(); + } + + +} diff --git a/src/main/java/com/student/zhang/controller/ScoreController.java b/src/main/java/com/student/zhang/controller/ScoreController.java new file mode 100644 index 0000000..a211410 --- /dev/null +++ b/src/main/java/com/student/zhang/controller/ScoreController.java @@ -0,0 +1,82 @@ +package com.student.zhang.controller; + +import com.student.zhang.entity.Score; +import com.student.zhang.service.IScoreService; +import lombok.Data; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * 成绩类控制器 + */ +@RestController +@RequestMapping("score") +public class ScoreController extends BaseController { + @Resource + IScoreService scoreService; + + + @Data + static class ScoreParam{ + private Integer[] courseIds; //保存课程id + private Integer[] studentIds; //保存学生id + private int pageIndex; //保存页码 + + @Override + public String toString() { + return "ScoreParam{" + + "courseIds=" + Arrays.toString(courseIds) + + ", studentIds=" + Arrays.toString(studentIds) + + ", pageIndex=" + pageIndex + + '}'; + } + } + + /** + * 成绩列表 + * @param scoreParam + * @return + */ + @PostMapping("list") + public Object index( @RequestBody ScoreParam scoreParam){ + List> maps = scoreService.list(scoreParam.getPageIndex(),scoreParam.getCourseIds(),scoreParam.getStudentIds()); + HashMap scoreMap = new HashMap<>(); + int total = scoreService.getTotal(); + scoreMap.put("pageIndex",scoreParam.getPageIndex()); //当前页码 + scoreMap.put("countPage",(int) Math.ceil((double)total / (double) 5)); //计算总共有多少页 + scoreMap.put("records",maps); //获取数据库的数据,以map数据类型存储 + scoreMap.put("total",scoreService.getTotal()); //获取总共有多少页 + return success("success", scoreMap); + } + + /** + * 新增/编辑 + * @param score + * @return + */ + @PostMapping("edit") + public Object edit(@Valid @RequestBody Score score, BindingResult result){ + scoreService.save(score); + return success("success", null); + + } + + /** + * 删除成绩 + * @param id + * @return + */ + @GetMapping("delete/{id}") + public Object delete(@PathVariable Integer id){ + scoreService.remove(id); + return success("success", null); + } + +} diff --git a/src/main/java/com/student/zhang/controller/StudentController.java b/src/main/java/com/student/zhang/controller/StudentController.java new file mode 100644 index 0000000..c9abb17 --- /dev/null +++ b/src/main/java/com/student/zhang/controller/StudentController.java @@ -0,0 +1,80 @@ +package com.student.zhang.controller; + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Student; +import com.student.zhang.service.IStudentService; +import lombok.Data; +import lombok.extern.slf4j.Slf4j; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; +import javax.validation.constraints.NotNull; +import java.sql.SQLException; + +/** + * 学生类控制器 + */ +@RestController +@RequestMapping("student") +@Slf4j +public class StudentController extends BaseController { + + @Resource + IStudentService studentService; + + @Data + static class ListParam { + @NotNull(message = "页码必须传递") + private Integer pageIndex; + @NotNull(message = "班级ID必须传递") + private Integer clazzId; + private String name; + } + + /** + * 学生列表 + * @param param + * @return + */ + @PostMapping("list") + public Object index(@Valid @RequestBody ListParam param, BindingResult result){ + Page studentPage = studentService.list(param.getPageIndex(), param.getClazzId(), param.getName()); + return success("success", studentPage); + } + + /** + * 新增/编辑 + * @param student + * @return + */ + @PostMapping("edit") + public Object edit(@RequestBody Student student){ + studentService.save(student); + return success("success", null); + } + + /** + * 删除学生 + * @param id + * @return + */ + @GetMapping("delete/{id}") + public Object delete(@PathVariable Integer id){ + studentService.remove(id); + return success("success", null) ; + + } + + /** + * 借钱 + * @return + */ + @GetMapping("borrowMoney/{money}") + public Object borrowMoney(@PathVariable Integer money) throws SQLException { + studentService.borrowMoney(16, 37, money); + return success("success", null); + } + +} diff --git a/src/main/java/com/student/zhang/controller/TeacherController.java b/src/main/java/com/student/zhang/controller/TeacherController.java new file mode 100644 index 0000000..7e8df4c --- /dev/null +++ b/src/main/java/com/student/zhang/controller/TeacherController.java @@ -0,0 +1,59 @@ +package com.student.zhang.controller; + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Teacher; +import com.student.zhang.service.ITeacherService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; + +/** + * 教师类控制器 + */ +@Slf4j +@RestController +@RequestMapping("teacher") +public class TeacherController extends BaseController { + + @Resource + ITeacherService teacherService; + + + /** + * 教师列表 + * @param pageIndex + * @return + */ + @PostMapping("list") + public Object index( Integer pageIndex){ + Page teacherPage = teacherService.list(pageIndex); + return success("success", teacherPage); + } + + /** + * 新增/编辑 + * @param teacher + * @return + */ + @PostMapping("edit") + public Object edit(@Valid @RequestBody Teacher teacher, BindingResult result){ + log.info("teacherId:"+teacher.getId()); + teacherService.save(teacher); + return success("success", null); + } + + /** + * 删除教师 + * @param id + * @return + */ + @GetMapping("delete/{id}") + public Object delete(@PathVariable Integer id){ + teacherService.remove(id); + return success("success", null); + } + +} diff --git a/src/main/java/com/student/zhang/controller/UserController.java b/src/main/java/com/student/zhang/controller/UserController.java new file mode 100644 index 0000000..8852f1b --- /dev/null +++ b/src/main/java/com/student/zhang/controller/UserController.java @@ -0,0 +1,184 @@ +package com.student.zhang.controller; + +import com.alibaba.fastjson.JSONObject; +import com.student.zhang.entity.User; +import com.student.zhang.service.IUserService; +import com.student.zhang.utils.SecurityUtils; +import com.student.zhang.utils.TokenUtils; +import lombok.extern.slf4j.Slf4j; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; +import java.time.LocalDateTime; +import java.util.Date; + +@Slf4j +@RestController +@RequestMapping("user") +public class UserController extends BaseController { + + /** + * 登录(使用req来获取数据) + * + * @return + */ + /* + @PostMapping("login") + public Object login(HttpServletRequest req, HttpServletResponse resp) { + + //账号 + String account = req.getParameter("account"); + //密码 + String password = SecurityUtils.md5Encrypt(req.getParameter("password")); + + log.info("接收到的account:" + account); + log.info("接收到的password:" + password); + + JSONObject object = new JSONObject(true); + object.put("state", 200); + object.put("message", "login success"); + object.put("timestamp", LocalDateTime.now()); + + return object.toJSONString(); + } + */ + + @Resource + IUserService userService; + + /** + * 登录 + * + * @param user + * @return + */ + @PostMapping("login") + public Object login(@Valid @RequestBody User user, BindingResult result) { + //密码 + user.setPassword(SecurityUtils.md5Encrypt(user.getPassword())); + userService.login(user); + JSONObject value = new JSONObject(); + Date issuedTime = new Date(); + Date expiresTime = new Date(issuedTime.getTime() + 1000 * 60 * 60 * 200); //过期时间为72个小时 + value.put("token", TokenUtils.generate(user.getAccount(), issuedTime, expiresTime)); + return success("登录成功", value); + } + /** + * 获取积分 + * @return + */ + @GetMapping("getMoney") + public Object getIntegral() { + String account = request.getAttribute("sign").toString(); + User user = userService.getByAccount(account); + return success("success", user.getMoney()); + } + + /** + * 测试SpringBoot项目 + * @return + */ + @GetMapping("test") + public Object test(){ + return success("success","这是我的第一个SpringBoot项目"); + } + + + + /** + * 退出 + * + * @return + */ + @GetMapping("logout/{count}/{name}") + public Object logout(@PathVariable Integer count, @PathVariable String name) { + + log.info("执行到logout方法了..."); + log.info(request.getMethod()); + log.info("接收到的count:" + count); + log.info("接收到的name:" + name); + + JSONObject object = new JSONObject(true); + object.put("state", 200); + object.put("message", "logout success"); + object.put("timestamp", LocalDateTime.now()); + + return object.toJSONString(); + } + + /** + * 注册(使用request和@RequestParam接收参数) + * @return + */ + /* + @PostMapping("register") + public Object register(@RequestParam String account, String password, String email) { + User user = new User(); + user.setAccount(account); + user.setPassword(password); + user.setEmail(email); + user.setRealname(request.getParameter("realname")); + user.setMobile(request.getParameter("mobile")); + user.setSex(request.getParameter("sex")); + user.setBirthday(new Date(request.getParameter("birthday").replace("-","/"))); //1990-10-04 + + log.info("接收到的user参数:" + user); + + + JSONObject object = new JSONObject(true); + object.put("state", 200); + object.put("message", "register success"); + object.put("timestamp", LocalDateTime.now()); + + return object.toJSONString(); + } + */ + + /** + * 注册(使用@ModelAttribute) + * + * @param user + * @return + */ + @PostMapping("register") + public Object register(@ModelAttribute User user) { + log.info("接收到的user参数:" + user); + String md5Encrypt = SecurityUtils.md5Encrypt(user.getPassword()); + user.setPassword(md5Encrypt); + userService.register(user); + return success("注册成功", null); + } + + + /** + * 注册(使用@RequestBody) + * + * @param user + * @return + */ + @PostMapping("registerJson") + public Object registerJson(User user) { + + log.info("接收到的user参数:" + user); + + JSONObject object = new JSONObject(true); + object.put("state", 200); + object.put("message", "register success"); + object.put("timestamp", LocalDateTime.now()); + + return object.toJSONString(); + } + + + @PostMapping("add") + public Object add(@RequestBody String content) { + log.info("接收到的content参数:" + content); + JSONObject object = new JSONObject(true); + object.put("state", 200); + object.put("message", "add success"); + object.put("timestamp", LocalDateTime.now()); + return object.toJSONString(); + } +} diff --git a/src/main/java/com/student/zhang/entity/BorrowRecord.java b/src/main/java/com/student/zhang/entity/BorrowRecord.java new file mode 100644 index 0000000..0f21a7d --- /dev/null +++ b/src/main/java/com/student/zhang/entity/BorrowRecord.java @@ -0,0 +1,33 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import java.io.Serializable; + +/** + * 借钱记录类 + */ +@Data +public class BorrowRecord implements Serializable { + private Integer id; + private Integer student_1Id; + private Integer student_2Id; + private Integer money; + + public BorrowRecord() { + } + + public BorrowRecord(Integer student_1Id, Integer student_2Id, Integer money) { + this.student_1Id = student_1Id; + this.student_2Id = student_2Id; + this.money = money; + } + + public BorrowRecord(Integer id, Integer student_1Id, Integer student_2Id, Integer money) { + this.id = id; + this.student_1Id = student_1Id; + this.student_2Id = student_2Id; + this.money = money; + } + +} diff --git a/src/main/java/com/student/zhang/entity/Clazz.java b/src/main/java/com/student/zhang/entity/Clazz.java new file mode 100644 index 0000000..5d55597 --- /dev/null +++ b/src/main/java/com/student/zhang/entity/Clazz.java @@ -0,0 +1,34 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; + +/** + * 班级类 + */ +@Data +public class Clazz implements Serializable { + public Clazz() { + } + + private Integer id; + @NotBlank(message = "班级名称不能为空") + private String name; + + public Clazz(Integer id, String name) { + this.id = id; + this.name = name; + } + + public Clazz(String name) { + this.name = name; + } + + + @Override + public String toString() { + return "id=" + id +" name=" + name; + } +} diff --git a/src/main/java/com/student/zhang/entity/Course.java b/src/main/java/com/student/zhang/entity/Course.java new file mode 100644 index 0000000..0077415 --- /dev/null +++ b/src/main/java/com/student/zhang/entity/Course.java @@ -0,0 +1,38 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +/** + * 教师类 + */ +@Data +public class Course implements Serializable { + private Integer id; + @NotBlank(message = "课程名称不能为空") + private String name; + @NotNull(message = "教师id不能为空") + private Integer teacher_id; + + public Course() { + } + + public Course(String name, Integer teacher_id) { + this.name = name; + this.teacher_id = teacher_id; + } + + public Course(Integer id, String name, Integer teacher_id) { + this.id = id; + this.name = name; + this.teacher_id = teacher_id; + } + + @Override + public String toString() { + return id +"\t\t"+ name+"\t\t"+teacher_id ; + } +} diff --git a/src/main/java/com/student/zhang/entity/Score.java b/src/main/java/com/student/zhang/entity/Score.java new file mode 100644 index 0000000..fc36174 --- /dev/null +++ b/src/main/java/com/student/zhang/entity/Score.java @@ -0,0 +1,40 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@Data +public class Score implements Serializable { + private Integer id; + @NotNull(message = "学生id不能为空") + private Integer student_id ; + @NotNull(message = "课程id不能为空") + private Integer course_id; + @NotNull(message = "成绩不能为空") + private Integer num; + + public Score() { + } + + public Score(Integer id, Integer student_id, Integer course_id, Integer num) { + this.id = id; + this.student_id = student_id; + this.course_id = course_id; + this.num = num; + } + + public Score(Integer student_id, Integer course_id, Integer num) { + this.student_id = student_id; + this.course_id = course_id; + this.num = num; + } + + + + @Override + public String toString() { + return id + "\t\t"+ student_id+ "\t\t" +course_id+ "\t\t" + num ; + } +} diff --git a/src/main/java/com/student/zhang/entity/Student.java b/src/main/java/com/student/zhang/entity/Student.java new file mode 100644 index 0000000..9a06500 --- /dev/null +++ b/src/main/java/com/student/zhang/entity/Student.java @@ -0,0 +1,95 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.Max; +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.time.LocalDateTime; + +/** + * 学生类 + */ +@Data +public class Student implements Serializable { + + private Integer id; + @NotBlank(message = "学生姓名不能为空") + private String name; + @NotNull(message = "班级ID不能为空") + private Integer clazzId; + @NotNull(message = "性别不能为空") + private String sex; + private String className; + @Max(value = 120, message = "年龄不能超过120") + @NotNull(message = "年龄不能为空") + private Integer age; + private String address; + private LocalDateTime createtime; + private Integer money; + + public Student() { + } + + public Student(Integer id, String name, Integer classId, String sex, Integer age, String address) { + this.id=id; + this.name=name; + this.clazzId=classId; + this.sex=sex; + this.age=age; + this.address=address; + } + + + + + + public Student(String name, Integer clazzId, String sex, Integer age, String address) { + this.name = name; + this.clazzId = clazzId; + this.sex = sex; + this.age = age; + this.address = address; + } + + public Student(String name, Integer clazzId, String sex, String className, Integer age, String address) { + this.name = name; + this.clazzId = clazzId; + this.sex = sex; + this.className = className; + this.age = age; + this.address = address; + } + + public Student(String name, Integer clazzId, String sex, Integer age, String address, LocalDateTime createtime) { + this.name = name; + this.clazzId = clazzId; + this.sex = sex; + this.age = age; + this.address = address; + this.createtime = createtime; + } + + public Student(Integer id, String name, Integer clazzId, String sex, Integer age, String address, LocalDateTime createtime) { + this.id = id; + this.name = name; + this.clazzId = clazzId; + this.sex = sex; + this.age = age; + this.address = address; + this.createtime = createtime; + } + + + @Override + public String toString() { + return id + + "\t" + name + + "\t" + clazzId + + "\t" + sex + + "\t" + age + + "\t" + address + + "\t" + createtime; + } +} diff --git a/src/main/java/com/student/zhang/entity/SystemLog.java b/src/main/java/com/student/zhang/entity/SystemLog.java new file mode 100644 index 0000000..c367af7 --- /dev/null +++ b/src/main/java/com/student/zhang/entity/SystemLog.java @@ -0,0 +1,47 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import java.io.Serializable; +import java.time.LocalDateTime; + +/** + * 系统操作日志类 + */ +@Data +public class SystemLog implements Serializable { + private Integer id; + private String method; + private String notice; + private Integer paramCount; + private String returnValue; + private LocalDateTime localDateTime; + + public SystemLog() { + } + + public SystemLog(Integer id, String method, String notice, Integer paramCount, String returnValue, LocalDateTime localDateTime) { + this.id = id; + this.method = method; + this.notice = notice; + this.paramCount = paramCount; + this.returnValue = returnValue; + this.localDateTime = localDateTime; + } + + public SystemLog(String method, String notice, Integer paramCount, String returnValue, LocalDateTime localDateTime) { + this.method = method; + this.notice = notice; + this.paramCount = paramCount; + this.returnValue = returnValue; + this.localDateTime = localDateTime; + } + + + public SystemLog(String method, String notice, int paramCount, String toString) { + this.method=method; + this.notice=notice; + this.paramCount=paramCount; + + } +} diff --git a/src/main/java/com/student/zhang/entity/Teacher.java b/src/main/java/com/student/zhang/entity/Teacher.java new file mode 100644 index 0000000..51754dc --- /dev/null +++ b/src/main/java/com/student/zhang/entity/Teacher.java @@ -0,0 +1,33 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; + +/** + * 教师类 + */ +@Data +public class Teacher implements Serializable { + private Integer id; + @NotBlank(message = "教师名称不能为空") + private String name; + + public Teacher(Integer id, String name) { + this.id = id; + this.name = name; + } + + public Teacher(String name) { + this.name = name; + } + + public Teacher() { + } + + @Override + public String toString() { + return id +"\t"+ name ; + } +} diff --git a/src/main/java/com/student/zhang/entity/User.java b/src/main/java/com/student/zhang/entity/User.java new file mode 100644 index 0000000..3ec1ecf --- /dev/null +++ b/src/main/java/com/student/zhang/entity/User.java @@ -0,0 +1,32 @@ +package com.student.zhang.entity; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; + +@Data +public class User implements Serializable { + private int id; + @NotBlank(message = "账号不能为空") + private String account; + @NotBlank(message = "密码不能为空") + private String password; + private Integer money; + + public User() { + } + + public User(String account, String password) { + this.account = account; + this.password = password; + } + + + + public User(int id, String account, String password) { + this.id = id; + this.account = account; + this.password = password; + } +} diff --git a/src/main/java/com/student/zhang/exception/ServiceValidationException.java b/src/main/java/com/student/zhang/exception/ServiceValidationException.java new file mode 100644 index 0000000..3184069 --- /dev/null +++ b/src/main/java/com/student/zhang/exception/ServiceValidationException.java @@ -0,0 +1,21 @@ +package com.student.zhang.exception; + + +import lombok.Data; + +import javax.validation.ValidationException; + +/** + * 自定义一个基于Service层的验证异常 + */ +@Data +public class ServiceValidationException extends ValidationException { + + private int state; + + public ServiceValidationException(String message, int state) { + super(message); + this.state = state; + } + +} diff --git a/src/main/java/com/student/zhang/handler/GlobalExceptionHandler.java b/src/main/java/com/student/zhang/handler/GlobalExceptionHandler.java new file mode 100644 index 0000000..4a52bd5 --- /dev/null +++ b/src/main/java/com/student/zhang/handler/GlobalExceptionHandler.java @@ -0,0 +1,68 @@ +package com.student.zhang.handler; + + +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.utils.ViewUtils; +import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestControllerAdvice; + +import javax.servlet.http.HttpServletResponse; +import javax.validation.ValidationException; + +/** + * 全局异常处理器:监听并处理整个项目的异常 + */ +@Slf4j +@RestControllerAdvice +public class GlobalExceptionHandler { + + /** + * 捕捉 ServiceValidationException异常并处理 + * @param exception + * @param response + * @return + */ + @ExceptionHandler({ServiceValidationException.class}) + public Object catchServiceValidationException(ServiceValidationException exception, HttpServletResponse response) { + log.error("catchServiceValidationException捕获到异常了=====>" + exception); + return getResult(response, exception.getMessage(), exception.getState()); + } + + /** + * 捕捉 ValidationException异常并处理,这里主要是为了监听和处理JSR303数据校验的异常, + * @param exception + * @param response + * @return + */ + @ExceptionHandler({ValidationException.class}) + public Object catchValidationException(ValidationException exception, HttpServletResponse response) { + log.error("catchValidationException捕获到异常了=====>" + exception); + return getResult(response, exception.getMessage(), 400); + } + + /** + * 捕捉 其它异常并处理 + * @param exception + * @param response + * @return + */ + @ExceptionHandler({Exception.class}) + public Object catchOtherException(Exception exception, HttpServletResponse response) { + log.error("catchOtherException捕获到其它异常了=====>" + exception); + exception.printStackTrace(); + return getResult(response, "服务器端发生了异常", 500); + } + + /** + * 获取结果 + * @param message + * @param state + * @return + */ + private String getResult(HttpServletResponse response, String message, int state) { + response.setStatus(state); + return ViewUtils.view(message, null, state); + } + +} diff --git a/src/main/java/com/student/zhang/interceptor/ServiceMethodInterceptor.java b/src/main/java/com/student/zhang/interceptor/ServiceMethodInterceptor.java new file mode 100644 index 0000000..50bbd7f --- /dev/null +++ b/src/main/java/com/student/zhang/interceptor/ServiceMethodInterceptor.java @@ -0,0 +1,27 @@ +package com.student.zhang.interceptor;//package com.student.zhang.interceptor; +// +//import org.aopalliance.intercept.MethodInterceptor; +//import org.aopalliance.intercept.MethodInvocation; +//import org.springframework.stereotype.Component; +// +//import java.lang.reflect.Method; +// +///** +// * 服务类方法拦截器,用于实现AOP +// */ +//@Component +//public class ServiceMethodInterceptor implements MethodInterceptor { +// +// @Override +// public Object invoke(MethodInvocation invocation) throws Throwable { +// +// Method method = invocation.getMethod(); //通过反射获取到当前执行的方法 +// System.out.println("增加的前置代码...方法名称:" + method.getName()); +// +// Object result = invocation.proceed(); //相当于执行原本的方法,并获取返回的结果 +// +// System.out.println("增加的后置代码..." + result); +// return result; +// } +// +//} diff --git a/src/main/java/com/student/zhang/interceptor/TokenInterceptor.java b/src/main/java/com/student/zhang/interceptor/TokenInterceptor.java new file mode 100644 index 0000000..8efacc5 --- /dev/null +++ b/src/main/java/com/student/zhang/interceptor/TokenInterceptor.java @@ -0,0 +1,45 @@ +package com.student.zhang.interceptor; + + +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.utils.TokenUtils; +import lombok.extern.slf4j.Slf4j; +import org.springframework.web.servlet.HandlerInterceptor; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +/** + * Token认证拦截器 + */ +@Slf4j +public class TokenInterceptor implements HandlerInterceptor { + + /** + * 在请求前进行拦截,进行Token认证 + * + * @param request + * @param response + * @param handler + * @return true:放行 false:拒绝 + * @throws Exception + */ + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException { + log.debug("执行了TokenInterceptor拦截器......."); + + //1. 先从header里面获取token令牌 + String token = request.getHeader("Token"); + + //2. 使用TokenUtils进行验证 + Object sign = TokenUtils.verify(token); + if (sign == null) { + //说明令牌验证未通过 + throw new ServiceValidationException("Token验证未通过", 401); + } + log.info("Token认证通过,标识为:" + sign); + request.setAttribute("sign", sign); + return true; + } +} diff --git a/src/main/java/com/student/zhang/listener/MyListener.java b/src/main/java/com/student/zhang/listener/MyListener.java new file mode 100644 index 0000000..cd31474 --- /dev/null +++ b/src/main/java/com/student/zhang/listener/MyListener.java @@ -0,0 +1,77 @@ +package com.student.zhang.listener; + +import javax.servlet.*; +import javax.servlet.annotation.WebListener; +import java.io.UnsupportedEncodingException; + +/** + * 我的监听器 + */ +@WebListener +public class MyListener implements ServletContextListener, ServletContextAttributeListener, + ServletRequestListener, ServletRequestAttributeListener { + + + @Override + public void contextInitialized(ServletContextEvent sce) { + //在这里写一些项目初始化工作的代码 + ServletContext context = sce.getServletContext(); //通过ServletContext事件对象获取ServletContext源对象 + context.setAttribute("visits", context.getInitParameter("visits")); //将ServletContext初始值中的visits放入ServletContext的属性中 + System.out.println("ServletContext创建好了"); + } + + @Override + public void contextDestroyed(ServletContextEvent sce) { + //在这里写一些web容器关闭的时候的一些代码,比如一些资源释放等 + System.out.println("ServletContext销毁了"); + } + + @Override + public void attributeAdded(ServletContextAttributeEvent scae) { +// System.out.println("ServletContext新增属性了,新增的属性名:" + scae.getName() + ",属性值:" + scae.getValue()); + } + + @Override + public void attributeRemoved(ServletContextAttributeEvent scae) { +// System.out.println("ServletContext删除属性了,删除的属性名:" + scae.getName() + ",属性值:" + scae.getValue()); + } + + @Override + public void attributeReplaced(ServletContextAttributeEvent scae) { +// System.out.println("ServletContext替换属性了,替换的属性名:" + scae.getName() + ",属性值:" + scae.getValue()); + } + + @Override + public void attributeAdded(ServletRequestAttributeEvent srae) { +// System.out.println("ServletRequest新增属性了,新增的属性名:" + srae.getName() + ",属性值:" + srae.getValue()); + } + + @Override + public void attributeRemoved(ServletRequestAttributeEvent srae) { +// System.out.println("ServletRequest移除属性了,移除的属性名:" + srae.getName() + ",属性值:" + srae.getValue()); + } + + @Override + public void attributeReplaced(ServletRequestAttributeEvent srae) { +// System.out.println("ServletRequest替换属性了,替换的属性名:" + srae.getName() + ",属性值:" + srae.getValue()); + } + + @Override + public void requestInitialized(ServletRequestEvent sre) { + //在这里写一些请求初始化的代码 + ServletRequest request = sre.getServletRequest(); + try { + request.setCharacterEncoding("utf-8"); //设置请求的字符集编码 + } catch (UnsupportedEncodingException exception) { + exception.printStackTrace(); + } + +// System.out.println("ServletRequest创建好了"); + } + + @Override + public void requestDestroyed(ServletRequestEvent sre) { + //在这里写一些请求执行完毕被销毁的代码 +// System.out.println("ServletRequest执行完毕,销毁了"); + } +} diff --git a/src/main/java/com/student/zhang/mapper/IBorrowRecordMapper.java b/src/main/java/com/student/zhang/mapper/IBorrowRecordMapper.java new file mode 100644 index 0000000..3e0afa8 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/IBorrowRecordMapper.java @@ -0,0 +1,45 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.BorrowRecord; +import org.apache.ibatis.annotations.CacheNamespace; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.cache.decorators.LruCache; + +/** + * 借钱记录类Mapper + */ +@Mapper +@CacheNamespace( + eviction = LruCache.class, + flushInterval = 100000, + size = 100, + readWrite = false //读写,如果需要设置为只读,则设置为false +) +public interface IBorrowRecordMapper { + + + /*** + * 添加借钱记录 + * @param borrowRecord + * @return + */ + @Insert("insert into borrow_record values(default,#{student_1Id},#{student_2Id},#{money},now())") + boolean save(BorrowRecord borrowRecord); + + + /** + * 获取借钱记录 + * + * @return + */ + @Select("select count(0) from borrow_record") + int getBorrowRecord(); + + + @Select("select count(0) from borrow_record where student1_id=#{studentId} or student2_id=#{studentId}") + int countByStudentId(int studentId); + + +} diff --git a/src/main/java/com/student/zhang/mapper/IClazzMapper.java b/src/main/java/com/student/zhang/mapper/IClazzMapper.java new file mode 100644 index 0000000..8757f74 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/IClazzMapper.java @@ -0,0 +1,79 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.Clazz; +import org.apache.ibatis.annotations.*; + +import java.util.List; + +/** + * 班级类Mapper + */ +@Mapper +public interface IClazzMapper { + + /** + * 查询所有班级数据 + * + * @return + */ + @Select("") + List select(@Param("pageIndex") int pageIndex, @Param("pageSize") int pageSize); + + + /** + * 新增班级数据 + * + * @param clazz 班级 + * @return + */ + @Insert(" insert into clazz\n" + + " values (default, #{name})") + int insert(Clazz clazz); + + /** + * 根据id删除班级信息 + * + * @param id + * @return + */ + @Delete(" delete\n" + + " from clazz\n" + + " where id = #{id}") + int delete(@Param("id") int id); + + /** + * 修改班级信息 + * + * @param clazz + * @return + */ + @Update(" delete\n" + + " from clazz\n" + + " where id = #{id}") + int update(Clazz clazz); + + /** + * 根据班级名称去查询数据库里面是否有即将新增的班级信息 + * + * @param name + * @return + */ + @Select(" select count(0)\n" + + " from clazz\n" + + " where name = #{name}") + int countByName(String name); + + /** + * 根据班级ID查询条数 + * + * @param id + * @return + */ + @Select(" select count(0)\n" + + " from clazz\n" + + " where id = #{id}") + int countById(int id); + +} diff --git a/src/main/java/com/student/zhang/mapper/ICourseMapper.java b/src/main/java/com/student/zhang/mapper/ICourseMapper.java new file mode 100644 index 0000000..f2df8b4 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/ICourseMapper.java @@ -0,0 +1,119 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.Course; +import org.apache.ibatis.annotations.*; + +import java.util.List; + +/** + * 课程类Mapper + */ +@Mapper +public interface ICourseMapper { + + /** + * 查询所有课程数据 + * + * @return + */ + @Select("") + List select(@Param("pageIndex") int pageIndex, @Param("pageSize") int pageSize); + + + /** + * 新增课程数据 + * + * @param course 课程 + * @return + */ + @Insert(" insert into course\n" + + " values (default, #{name}, #{teacher_id})") + int insert(Course course); + + /** + * 获取数据表中总共有多少条数据 + * + * @return + */ + @Select(" select count(0)\n" + + " from course") + int countPage(); + + /** + * 根据id删除课程信息 + * + * @param id + * @return + */ + @Delete(" delete\n" + + " from course\n" + + " where id = #{id}") + int delete(@Param("id") int id); + + /** + * 修改课程信息 + * + * @param course + * @return + */ + @Update("") + int update(Course course); + + /** + * 根据课程名称去查询数据库里面是否有即将新增的课程信息 + * + * @param name + * @return + */ + @Select(" select count(0)\n" + + " from course\n" + + " where name = #{name}") + int countByName(@Param("name") String name); + + /** + * 根据课程ID查询条数 + * + * @param id + * @return + */ + @Select(" select count(0)\n" + + " from course\n" + + " where id = #{id}") + int countById(@Param("id") int id); + + /** + * 根据课程中的TeacherId查询课程表条数(目的:删除teacher表数据) + * + * @param teacher_id + * @return + */ + @Select(" select count(0)\n" + + " from teacher\n" + + " where id = #{teacher_id}") + int countByTeacherId(int teacher_id); + + /** + * 根据teacher表中的Id查询教师表条数(目的:为了新增course表的数据,因为course表中的teacher_id 字段与teacher表绑定) + * + * @param teacherId 教师编号 + * @return + */ + @Select("select count(0)\n" + + " from teacher\n" + + " where id = #{teacher_id}") + int countByTeacherIdForCourse(int teacherId); + +} diff --git a/src/main/java/com/student/zhang/mapper/IScoreMapper.java b/src/main/java/com/student/zhang/mapper/IScoreMapper.java new file mode 100644 index 0000000..cc8060c --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/IScoreMapper.java @@ -0,0 +1,129 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.Score; +import org.apache.ibatis.annotations.*; + +import java.util.List; +import java.util.Map; + +/** + * 学生类Mapper + */ +@Mapper +public interface IScoreMapper { + + + /** + * 查询所有成绩数据 + * + * @return + */ + + List> select(@Param("pageIndex") int pageIndex, + @Param("pageSize") int pageSize, + @Param("courseIds") Integer[] courseIds, + @Param("studentIds") Integer[] studentIds); + + + /** + * 获取数据表中总共有多少条数据 + * + * @return + */ + @Select(" select count(0)\n" + + " from score") + int getTotal(); + + /** + * 根据StudentID查询学生表条数(目的:为了删除student表的数据,查看score表中是否有引用) + * + * @param student_id + * @return + */ + @Select(" select count(0)\n" + + " from score\n" + + " where student_id = #{student_id}") + int countByStudentId(int student_id); + + /** + * 根据学生id查询总分 + * + * @param student_id + * @return + */ + @Select(" select sum(num)\n" + + " from score\n" + + " where student_id = #{student_id}") + int selectSumByStudentId(int student_id); + + /** + * 根据CourseId查询课程表条数(目的:为了删除course表的数据,查看score表中是否有引用) + * + * @param course_id + * @return + */ + @Select("select count(0)\n" + + " from score\n" + + " where course_id = #{course_id}") + int countByCourseId(int course_id); + + /** + * 新增成绩数据 + * + * @param score 成绩 + * @return 新增结果 + */ + @Insert(" insert into score\n" + + " values (default, #{student_id}, #{course_id}, #{num})") + int insert(Score score); + + /** + * 根据id删除成绩表信息 + * + * @param id + * @return + */ + @Delete(" delete\n" + + " from score\n" + + " where id = #{id}") + int delete(int id); + + /** + * 修改成绩表信息 + * + * @param score + * @return + */ + @Update("update score\n" + + " set student_id=#{student_id},\n" + + " course_id=#{course_id},\n" + + " num=#{num}\n" + + " where id = #{id}") + int update(Score score); + + /** + * 根据班级ID和课程ID一起去查询数据库里面是否有即将新增的成绩表信息 + * + * @param student_id 学生编号 + * @param course_id 课程编号 + * @return 是否存在学生和课程一样的信息 + */ + @Select(" select count(0)\n" + + " from score\n" + + " where student_id = #{student_id}\n" + + " and course_id = #{course_id}") + int countByStuIdAndCourseId(@Param("student_id") int student_id, @Param("course_id") int course_id); + + /** + * 根据成绩ID查询条数 + * + * @param id + * @return + */ + @Select(" select count(0)\n" + + " from score\n" + + " where id = #{id}") + int countById(int id); + + +} diff --git a/src/main/java/com/student/zhang/mapper/IStudentMapper.java b/src/main/java/com/student/zhang/mapper/IStudentMapper.java new file mode 100644 index 0000000..cb4b9e5 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/IStudentMapper.java @@ -0,0 +1,145 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.Student; +import org.apache.ibatis.annotations.*; + +import java.util.List; + +/** + * 学生类Mapper + */ +@Mapper +@CacheNamespace +public interface IStudentMapper { + + + + /** + * 查询所有学生数据 + * + * @param pageIndex + * @param pageSize + * @param clazzId + * @param name + * @return + */ + @Select("") + @Results( + id = "studentResult", + value = { + @Result(property = "clazzId", column = "class_id"), + } + ) + List select(@Param("pageIndex") int pageIndex, + @Param("pageSize") int pageSize, + @Param("clazzId") Integer clazzId, + @Param("name") String name); + + /** + * 根据学生ID修改其money + * + * @param studentId + * @param money 需要增减的数值 + * @return + */ + @Update(" update student set money=money-#{money} where id=#{studentId}") + int updateMoney(@Param("studentId") int studentId, @Param("money") int money); + + + /** + * 获取数据表中总共有多少条数据 + * + * @return + */ + @Select(" select count(0) from student") + int countPage(); + + /** + * 新增学生数据 + * + * @param student 学生 + * @return + */ + @Insert("insert into student values(default, #{name}, #{clazzId}, #{sex}, #{age}, #{address}, now(), #{money})") + int insert(Student student); + + /** + * 根据id删除学生信息 + * + * @param id + * @return + */ + @Delete("delete from student where id=#{id}") + int delete(@Param("id") int id); + + /** + * 修改学生信息 + * + * @param student + * @return + */ + @Update("") + int update(Student student); + + /** + * 根据学生名称去查询数据库里面是否有即将新增的学生信息 + * + * @param name + * @return + */ + @Select(" select count(0) from student where name=#{name}") + int countByName(String name); + + /** + * 根据学生ID查询条数 + * + * @param id + * @return + */ + @Select("select count(0) from student where id=#{id}") + int countById(@Param("id") int id); + + /** + * 根据学生ID查询学生表条数(目的:为了删除Clazz表中的数据) + * + * @param class_id + * @return + */ + @Select("select count(0) from student where class_id=#{clazzId}") + int countByClazzId(@Param("clazzId") int class_id); + + /** + * 根据clazz表中的Id查询班级表条数(目的:为了新增student表的数据,因为student表中的clazz_id 字段与clazz绑定) + * + * @param clazzId + * @return + */ + @Select(" select count(0) from clazz where id=#{id}") + int countByClazzIdForStudent(@Param("id") int clazzId); + +} diff --git a/src/main/java/com/student/zhang/mapper/ISystemLogMapper.java b/src/main/java/com/student/zhang/mapper/ISystemLogMapper.java new file mode 100644 index 0000000..0328bf1 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/ISystemLogMapper.java @@ -0,0 +1,58 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.SystemLog; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Select; + +import java.util.List; + +/** + * 系统日志类Mapper + */ +@Mapper +public interface ISystemLogMapper { + + + /** + * 查询所有系统日志数据 + * + * @return + */ + @Select("") + List select(@Param("pageIndex") int pageIndex, @Param("pageSize") int pageSize); + + + /** + * 获取数据表中总共有多少条数据 + * + * @return + */ + int countPage(); + + /** + * 新增系统日志数据 + * + * @param systemLog 系统日志 + * @return + */ + int insert(SystemLog systemLog); + + /** + * 根据id删除系统日志信息 + * + * @param id + * @return + */ + int delete(@Param("id") int id); + + /** + * 根据系统日志ID查询条数 + * + * @param id + * @return + */ + int countById(int id); + + +} diff --git a/src/main/java/com/student/zhang/mapper/ITeacherMapper.java b/src/main/java/com/student/zhang/mapper/ITeacherMapper.java new file mode 100644 index 0000000..553a324 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/ITeacherMapper.java @@ -0,0 +1,91 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.Teacher; +import org.apache.ibatis.annotations.*; + +import java.util.List; + +/** + * 教师类Mapper + */ +@Mapper +public interface ITeacherMapper { + + + /** + * 获取教师的数据 + * + * @return + */ + @Select("") + List select(@Param("pageIndex") int pageIndex, @Param("pageSize") int pageSize); + + + /** + * 获取数据表中总共有多少条数据 + * + * @return + */ + @Select("select count(0) from teacher") + int countPage(); + + /** + * 新增教师数据 + * + * @param teacher 教师 + * @return + */ + @Insert(" insert into teacher\n" + + " values (default, #{name})") + int insert(Teacher teacher); + + /** + * 根据id删除教师信息 + * + * @param id + * @return + */ + @Delete(" delete\n" + + " from teacher\n" + + " where id = #{id}") + int delete(@Param("id") int id); + + /** + * 修改教师信息 + * + * @param teacher + * @return + */ + @Update(" update teacher\n" + + " set name=#{name}\n" + + " where id = #{id}") + int update(Teacher teacher); + + /** + * 根据教师名称去查询数据库里面是否有即将新增的教师信息 + * + * @param name + * @return + */ + @Select(" select count(0)\n" + + " from teacher\n" + + " where name = #{name}") + int countByName(@Param("name") String name); + + /** + * 根据教师ID查询条数 + * + * @param id + * @return + */ + @Select(" select count(0)\n" + + "from teacher\n" + + "where id = #{id}") + int countById(@Param("id") int id); + + +} diff --git a/src/main/java/com/student/zhang/mapper/IUserMapper.java b/src/main/java/com/student/zhang/mapper/IUserMapper.java new file mode 100644 index 0000000..05871a5 --- /dev/null +++ b/src/main/java/com/student/zhang/mapper/IUserMapper.java @@ -0,0 +1,55 @@ +package com.student.zhang.mapper; + +import com.student.zhang.entity.User; +import org.apache.ibatis.annotations.*; + +/** + * 用户类Mapper + */ +@Mapper +public interface IUserMapper { + + + /** + * 根据用户账号、密码查询用户对象 + * + * @param account + * @return + */ + @Select("select * from user where account=#{account}") + User selectByAccount(@Param("account") String account); + + /** + * 根据用户账号、密码查询条数 + * + * @param user + * @return + */ + @Select("select count(0) from user where account=#{account} and password=#{password}") + int selectByUser(User user); + + /** + * 更新用户积分 + * + * @param account + * @param Money + * @return + */ + @Update(" update user set money =money-#{money} where account=#{account}") + int update(@Param("account") String account, @Param("money") Integer Money); + + /** + * 新增用户数据 + * + * @param user 用户 + * @return + */ + @Insert(" insert into user values(default,#{account},#{password},#{money})") + @Options( + keyProperty = "id", + useGeneratedKeys = true + ) + int insert(User user); + + +} diff --git a/src/main/java/com/student/zhang/service/IBorrowRecordService.java b/src/main/java/com/student/zhang/service/IBorrowRecordService.java new file mode 100644 index 0000000..e12c81b --- /dev/null +++ b/src/main/java/com/student/zhang/service/IBorrowRecordService.java @@ -0,0 +1,26 @@ +package com.student.zhang.service; + + +import com.student.zhang.entity.BorrowRecord; + +import java.sql.SQLException; + +public interface IBorrowRecordService { + + /*** + * 添加借钱记录 + * @param borrowRecord + * @return + */ + boolean save(BorrowRecord borrowRecord); + + + int countByStudentId(int studentId); + + /** + * 获取借钱记录 + * @return + */ + int getBorrowRecord() throws SQLException; + +} diff --git a/src/main/java/com/student/zhang/service/IClazzService.java b/src/main/java/com/student/zhang/service/IClazzService.java new file mode 100644 index 0000000..2b0a770 --- /dev/null +++ b/src/main/java/com/student/zhang/service/IClazzService.java @@ -0,0 +1,34 @@ +package com.student.zhang.service; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Clazz; + +/** + * 班级服务接口 + */ +public interface IClazzService { + + /** + * 获取班级列表 + * @return + */ + Page list(int pageIndex); + + + + /** + * 用于对数据进行修改和新增 + * @param clazz 班级 + * @return + */ + boolean save(Clazz clazz); + + /** + * 删除班级信息 + * @param id + * @return + */ + boolean remove(int id); + +} diff --git a/src/main/java/com/student/zhang/service/ICourseService.java b/src/main/java/com/student/zhang/service/ICourseService.java new file mode 100644 index 0000000..79aba76 --- /dev/null +++ b/src/main/java/com/student/zhang/service/ICourseService.java @@ -0,0 +1,27 @@ +package com.student.zhang.service; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Course; + +/** + *获取课程列表 + */ +public interface ICourseService { + + Page list(int pageIndex); + + /** + * 用于对数据进行修改和新增 + * @param course 课程 + * @return + */ + boolean save(Course course); + + /** + * 删除课程信息 + * @param id + * @return + */ + boolean remove(int id); +} diff --git a/src/main/java/com/student/zhang/service/IScoreService.java b/src/main/java/com/student/zhang/service/IScoreService.java new file mode 100644 index 0000000..4c4634a --- /dev/null +++ b/src/main/java/com/student/zhang/service/IScoreService.java @@ -0,0 +1,44 @@ +package com.student.zhang.service; + + +import com.student.zhang.entity.Score; + +import java.util.List; +import java.util.Map; + +/** + * 成绩业务接口 + */ +public interface IScoreService { + + /** + * 获取成绩列表 + * @return + */ + List> list(int pageIndex,Integer[] courseId,Integer[] studentId); + + /** + * 用于对数据进行修改和新增 + * @param score 成绩表 + * @return + */ + boolean save(Score score); + + /** + * 删除成绩表 信息 + * @param id + * @return + */ + boolean remove(int id); + + + /** + * 计算总共的数量 + * @return + */ + int getTotal(); + + + int getSumByStudentId(int studentId); + +} diff --git a/src/main/java/com/student/zhang/service/IStudentService.java b/src/main/java/com/student/zhang/service/IStudentService.java new file mode 100644 index 0000000..5339b3b --- /dev/null +++ b/src/main/java/com/student/zhang/service/IStudentService.java @@ -0,0 +1,45 @@ +package com.student.zhang.service; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Student; + +import java.sql.SQLException; + +/** + * 学生服务接口 + */ +public interface IStudentService { + + /** + * 获取学生列表 + * @return + */ + Page list(int pageIndex, Integer clazzId, String name); + + + /** + * 用于对数据进行修改和新增 + * @param student 教师 + * @return + */ + boolean save(Student student); + + /** + * 删除教师信息 + * @param id + * @return + */ + boolean remove(int id); + + /** + * 学生借钱 + * @param student1Id + * @param student2Id + * @param money + * @return + * @throws SQLException + */ + boolean borrowMoney(int student1Id, int student2Id, int money) throws SQLException; + +} diff --git a/src/main/java/com/student/zhang/service/ISystemLogService.java b/src/main/java/com/student/zhang/service/ISystemLogService.java new file mode 100644 index 0000000..3f99e0e --- /dev/null +++ b/src/main/java/com/student/zhang/service/ISystemLogService.java @@ -0,0 +1,26 @@ +package com.student.zhang.service; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.SystemLog; + +/** + * 系统日志接口 + */ +public interface ISystemLogService { + Page list(int pageIndex); + + /** + * 用于对数据进行修改和新增 + * @param systemLog 系统日志 + * @return + */ + boolean save(SystemLog systemLog); + + /** + * 删除系统日志信息 + * @param id + * @return + */ + boolean remove(int id); +} diff --git a/src/main/java/com/student/zhang/service/ITeacherService.java b/src/main/java/com/student/zhang/service/ITeacherService.java new file mode 100644 index 0000000..3b05bc4 --- /dev/null +++ b/src/main/java/com/student/zhang/service/ITeacherService.java @@ -0,0 +1,28 @@ +package com.student.zhang.service; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Teacher; + +/** + *获取教师列表 + */ +public interface ITeacherService { + Page list(int pageIndex); + + + + /** + * 用于对数据进行修改和新增 + * @param teacher 教师 + * @return + */ + boolean save(Teacher teacher); + + /** + * 删除教师信息 + * @param id + * @return + */ + boolean remove(int id); +} diff --git a/src/main/java/com/student/zhang/service/IUserService.java b/src/main/java/com/student/zhang/service/IUserService.java new file mode 100644 index 0000000..eb4133d --- /dev/null +++ b/src/main/java/com/student/zhang/service/IUserService.java @@ -0,0 +1,35 @@ +package com.student.zhang.service; + + +import com.student.zhang.entity.User; + +public interface IUserService { + + + /** + * 登录 + * @param user + * @return 是否成功 + */ + void login(User user); + + + boolean register(User user); + + + /** + * 根据账号获取User对象 + * @param account + * @return + */ + User getByAccount(String account); + + + /** + * 指定账号下载文件 + * @param account + */ + void downloadFile(String account); + + +} diff --git a/src/main/java/com/student/zhang/service/impl/BorrowRecordServiceImpl.java b/src/main/java/com/student/zhang/service/impl/BorrowRecordServiceImpl.java new file mode 100644 index 0000000..37ef98f --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/BorrowRecordServiceImpl.java @@ -0,0 +1,43 @@ +package com.student.zhang.service.impl; + +import com.student.zhang.entity.BorrowRecord; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.IBorrowRecordMapper; +import com.student.zhang.service.IBorrowRecordService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +@Service("borrowRecordService") +@Slf4j +public class BorrowRecordServiceImpl implements IBorrowRecordService { + @Resource + IBorrowRecordMapper borrowRecordMapper; + + + /*** + * 添加借钱记录 + * @param borrowRecord + * @return + */ + @Override + public boolean save(BorrowRecord borrowRecord) { + return borrowRecordMapper.save(borrowRecord); + } + + @Override + public int countByStudentId(int studentId) { + return 0; + } + + @Override + public int getBorrowRecord() { + if (borrowRecordMapper.getBorrowRecord()==0){ + throw new ServiceValidationException("没找到数据",402); + } + return borrowRecordMapper.getBorrowRecord(); + } + + +} diff --git a/src/main/java/com/student/zhang/service/impl/ClazzServiceImpl.java b/src/main/java/com/student/zhang/service/impl/ClazzServiceImpl.java new file mode 100644 index 0000000..f096093 --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/ClazzServiceImpl.java @@ -0,0 +1,59 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Clazz; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.IClazzMapper; +import com.student.zhang.mapper.IStudentMapper; +import com.student.zhang.service.IClazzService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +@Slf4j +/** + * 班级服务实现类 + */ +@Service("clazzService") +public class ClazzServiceImpl implements IClazzService { + + @Resource + private IStudentMapper studentMapper; + @Resource + private IClazzMapper clazzMapper; + + @Override + public Page list(int pageIndex) { + Page clazzPage = new Page(pageIndex, 5); + clazzPage.setRecords(clazzMapper.select(pageIndex, 5)); + clazzPage.setTotal(studentMapper.countPage()); + return clazzPage; + } + + @Override + public boolean save(Clazz clazz) { + if (clazz.getId() != null && clazzMapper.countById(clazz.getId()) == 0) { + throw new ServiceValidationException("该班ID不存在", 402); + + } + if (clazzMapper.countByName(clazz.getName()) > 0) { + throw new ServiceValidationException("该班级名称已存在", 402); + } + //如果class的id不存在,那么就新增一个班级,如果存在,就修改 + return clazz.getId() == null ? clazzMapper.insert(clazz) > 0 : clazzMapper.update(clazz) > 0; + } + + @Override + public boolean remove(int id) { + if (studentMapper.countByClazzId(id) > 0) { + throw new ServiceValidationException("该数据与其他表有关联,不能删除!", 402); + } + if (clazzMapper.countById(id) == 0) { + throw new ServiceValidationException("ID不存在,没有这个班级,无需删除!", 402); + } + return clazzMapper.delete(id) > 0; + } + +} diff --git a/src/main/java/com/student/zhang/service/impl/CourseServiceImpl.java b/src/main/java/com/student/zhang/service/impl/CourseServiceImpl.java new file mode 100644 index 0000000..3ee6373 --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/CourseServiceImpl.java @@ -0,0 +1,56 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Course; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.ICourseMapper; +import com.student.zhang.mapper.IScoreMapper; +import com.student.zhang.service.ICourseService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +@Slf4j +@Service("courseService") +public class CourseServiceImpl implements ICourseService { + @Resource + private ICourseMapper courseMapper; + @Resource + private IScoreMapper scoreMapper; + + @Override + public Page list(int pageIndex) { + Page studentPage = new Page(pageIndex, 5); + studentPage.setRecords(courseMapper.select(pageIndex, 5)); + studentPage.setTotal(courseMapper.countPage()); + return studentPage; + } + + @Override + public boolean save(Course course) { + if (course.getId() != null && courseMapper.countById(course.getId()) == 0) { + throw new ServiceValidationException("该课程ID不存在", 402); + } + if (courseMapper.countByName(course.getName()) > 0) { + throw new ServiceValidationException("该课程名称已存在", 402); + } + if (courseMapper.countByTeacherIdForCourse(course.getTeacher_id())==0){ + throw new ServiceValidationException("新增失败,教师表中没有该教师,不能选修该老师课程!", 402); + } + //如果class的id不存在,那么就新增一个课程,如果存在,就修改 + return course.getId() == null ? courseMapper.insert(course) > 0 : courseMapper.update(course) > 0; + } + + @Override + public boolean remove(int id) { + if (scoreMapper.countByCourseId(id) > 0) { + throw new ServiceValidationException("该数据与其他表有关联,不能删除", 402); + } + if (courseMapper.countById(id) == 0) { + throw new ServiceValidationException("ID不存在,没有这个课程,无需删除", 402); + } + return courseMapper.delete(id) > 0; + } +} diff --git a/src/main/java/com/student/zhang/service/impl/ScoreServiceImpl.java b/src/main/java/com/student/zhang/service/impl/ScoreServiceImpl.java new file mode 100644 index 0000000..da453d5 --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/ScoreServiceImpl.java @@ -0,0 +1,78 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.entity.Score; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.ICourseMapper; +import com.student.zhang.mapper.IScoreMapper; +import com.student.zhang.mapper.IStudentMapper; +import com.student.zhang.service.IScoreService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.util.List; +import java.util.Map; + +@Slf4j +/** + * 成绩业务实现类 + */ +@Service("scoreService") +public class ScoreServiceImpl implements IScoreService { + + @Resource + private IScoreMapper scoreMapper; + @Resource + private IStudentMapper studentMapper; + @Resource + private ICourseMapper courseMapper; + + + + @Override + public List> list(int pageIndex, Integer[] courseId, Integer[] studentId) { + List> maps = scoreMapper.select(pageIndex, 5,courseId,studentId); + String hello = new String("hello"); + String a="hello"; + + return maps; + } + + @Override + public boolean save(Score score) { + if (score.getId() != null && scoreMapper.countById(score.getId()) == 0) { + throw new ServiceValidationException("该班ID不存在", 402); + } + if (score.getId() == null && scoreMapper.countByStuIdAndCourseId(score.getStudent_id(), score.getCourse_id()) > 0) { + throw new ServiceValidationException("该成绩已经在成绩表中存在,无需再次添加!", 402); + } + if ((studentMapper.countById(score.getStudent_id()) < 1) || (courseMapper.countById(score.getCourse_id()) < 1)) { + throw new ServiceValidationException("您输入的学生编号或者课程编号不存在,不能修改和添加", 402); + } + //如果score的id不存在,那么就新增一个成绩,如果存在,就修改 + return score.getId() == null ? scoreMapper.insert(score) > 0 : scoreMapper.update(score) > 0; + } + + @Override + public boolean remove(int id) { + if (scoreMapper.countById(id) == 0) { + throw new ServiceValidationException("ID不存在,没有这个成绩,无需删除!", 402); + } + return scoreMapper.delete(id) > 0; + } + + @Override + public int getTotal() { + return scoreMapper.getTotal(); + } + + + + @Override + public int getSumByStudentId(int studentId) { + return scoreMapper.selectSumByStudentId(studentId); + } + + +} diff --git a/src/main/java/com/student/zhang/service/impl/StudentServiceImpl.java b/src/main/java/com/student/zhang/service/impl/StudentServiceImpl.java new file mode 100644 index 0000000..d4d5b97 --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/StudentServiceImpl.java @@ -0,0 +1,119 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.bean.Page; + +import com.student.zhang.entity.BorrowRecord; +import com.student.zhang.entity.Student; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.IBorrowRecordMapper; +import com.student.zhang.mapper.IScoreMapper; +import com.student.zhang.mapper.IStudentMapper; +import com.student.zhang.service.IBorrowRecordService; +import com.student.zhang.service.IStudentService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.springframework.transaction.PlatformTransactionManager; +import org.springframework.transaction.TransactionDefinition; +import org.springframework.transaction.TransactionStatus; + +import javax.annotation.Resource; +import java.sql.SQLException; +import java.time.LocalDateTime; + +/** + * 学生服务实现类 + */ +@Service("studentService") +@Slf4j +public class StudentServiceImpl implements IStudentService { + + @Resource + IBorrowRecordMapper borrowRecordMapper; + @Resource + TransactionDefinition transactionDefinition; //配置事务定义器 + @Resource + PlatformTransactionManager transactionManager; //配置事务管理器 + @Resource + IBorrowRecordService borrowRecordService; + + + @Resource + private IScoreMapper scoreMapper; + @Resource + IStudentMapper studentMapper; + + @Override + public Page list(int pageIndex, Integer clazzId, String name) { + Page studentPage = new Page(pageIndex, 5); + studentPage.setRecords(studentMapper.select(pageIndex, 5, clazzId, name)); + studentPage.setTotal(studentMapper.countPage()); + return studentPage; + } + +// @Override +// @Transactional +// public boolean borrowMoney(int student1Id, int student2Id, int money) throws SQLException { +// int result2 = studentMapper.updateMoney(student2Id, -money); //加钱 +// int result1 = studentMapper.updateMoney(student1Id, money); //减钱 +// if (result1 > 0 && result2 > 0) { +// borrowRecordDao.insert(new BorrowRecord(student1Id, student2Id, money)); +// log.info("成功添加借钱记录" + "-----" + LocalDateTime.now()); +// return true; +// } else { +// log.info("添加失败"); +// return false; +// } +// } + + + @Override + public boolean save(Student student) { + if (student.getId() != null && studentMapper.countById(student.getId()) == 0) { + throw new ServiceValidationException("该学生ID不存在", 402); + } + //不允许重名 +// if (studentMapper.countByName(student.getName()) > 0) { +// throw new ServiceValidationException("该学生名称已存在", 402); +// } + if (studentMapper.countByClazzIdForStudent(student.getClazzId()) == 0) { + throw new ServiceValidationException("新增失败,班级表中没有该班级,不能为其分配该班级!!", 402); + } + if (student.getId() == null) { + student.setMoney(100); //当创建新的学生时,初始余额100元 + return studentMapper.insert(student) > 0; + } else { + return studentMapper.update(student) > 0; + } + } + + @Override + public boolean remove(int id) { + if (scoreMapper.countByStudentId(id) > 0 || borrowRecordMapper.countByStudentId(id) > 0) { + throw new ServiceValidationException("该学生与其他表有关联,不能删除", 402); + } + if (studentMapper.countById(id) == 0) { + throw new ServiceValidationException("ID不存在,没有这个学生,无需删除!", 402); + } + return studentMapper.delete(id) > 0; + } + + public boolean borrowMoney(int student1Id, int student2Id, int money) throws SQLException { + //创建一个事务状态对象 + TransactionStatus transactionStatus = transactionManager.getTransaction(transactionDefinition); + borrowRecordService.save(new BorrowRecord(student1Id, student2Id, money)); + try { + int result2 = studentMapper.updateMoney(student2Id, -money); //加钱 + int result1 = studentMapper.updateMoney(student1Id, money); //减钱 + //如果上面的若干代码均未报错,则提交事务 + transactionManager.commit(transactionStatus); + log.info("成功添加借钱记录-----金额:" + money + "------" + LocalDateTime.now()); + return result1 > 0 & result2 > 0; + } catch (Exception exception) { + //如果上面的若干代码有一处报错,则try里面的代码执行的结果全数回滚 + transactionManager.rollback(transactionStatus); + log.info("添加失败借钱记录-----" + LocalDateTime.now()); + } + return false; + } +} diff --git a/src/main/java/com/student/zhang/service/impl/SystemLogServiceImpl.java b/src/main/java/com/student/zhang/service/impl/SystemLogServiceImpl.java new file mode 100644 index 0000000..ac6b41b --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/SystemLogServiceImpl.java @@ -0,0 +1,61 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.SystemLog; +import com.student.zhang.mapper.ISystemLogMapper; +import com.student.zhang.service.ISystemLogService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +/** + * 系统日志服务实现类 + */ +@Slf4j +@Service("systemLogService") +public class SystemLogServiceImpl implements ISystemLogService { + + @Resource + private ISystemLogMapper systemLogMapper; + + /** + * 获取系统日志信息 + * @param pageIndex + * @return + */ + @Override + public Page list(int pageIndex) { + Page systemLogPage = new Page(pageIndex, 5); + systemLogPage.setRecords(systemLogMapper.select(pageIndex, 5)); + systemLogPage.setTotal(systemLogMapper.countPage()); + return systemLogPage; + } + + + /** + * 添加系统日志 + * @param systemLog 系统日志 + * @return + */ + @Override + public boolean save(SystemLog systemLog) { + if (systemLogMapper.insert(systemLog)>0){ + log.info("成功保存系统操作日志记录......"); + return true; + } + return false; + } + + /** + * 移除系统日志 + * @param id + * @return + */ + @Override + public boolean remove(int id) { + return systemLogMapper.delete(id)>0; + } + +} diff --git a/src/main/java/com/student/zhang/service/impl/TeacherServiceImpl.java b/src/main/java/com/student/zhang/service/impl/TeacherServiceImpl.java new file mode 100644 index 0000000..3da8d83 --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/TeacherServiceImpl.java @@ -0,0 +1,57 @@ +package com.student.zhang.service.impl; + + +import com.student.zhang.bean.Page; +import com.student.zhang.entity.Teacher; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.ICourseMapper; +import com.student.zhang.mapper.ITeacherMapper; +import com.student.zhang.service.ITeacherService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +@Slf4j +@Service("teacherService") +public class TeacherServiceImpl implements ITeacherService { + + @Resource + private ITeacherMapper teacherMapper; + @Resource + private ICourseMapper courseMapper; + + @Override + public Page list(int pageIndex) { + Page studentPage = new Page(pageIndex, 5); + studentPage.setRecords(teacherMapper.select(pageIndex, 5)); + studentPage.setTotal(teacherMapper.countPage()); + return studentPage; + } + + + + @Override + public boolean save(Teacher teacher) { + if (teacher.getId() != null && teacherMapper.countById(teacher.getId()) == 0) { + throw new ServiceValidationException("该教师ID不存在", 402); + } + if (teacherMapper.countByName(teacher.getName()) > 0) { + throw new ServiceValidationException("该教师名称已存在", 402); + } + //如果class的id不存在,那么就新增一个教师,如果存在,就修改 + return teacher.getId() == null ? teacherMapper.insert(teacher) > 0 : teacherMapper.update(teacher) > 0; + } + + @Override + public boolean remove(int id) { + if (courseMapper.countByTeacherId(id) > 0) { + throw new ServiceValidationException("该数据与其他表有关联,不能删除", 402); + } + if (teacherMapper.countById(id) == 0) { + throw new ServiceValidationException("ID不存在,没有这个教师,无需删除!", 402); + } + return teacherMapper.delete(id) > 0; + } + +} diff --git a/src/main/java/com/student/zhang/service/impl/UserServiceImpl.java b/src/main/java/com/student/zhang/service/impl/UserServiceImpl.java new file mode 100644 index 0000000..8c0535a --- /dev/null +++ b/src/main/java/com/student/zhang/service/impl/UserServiceImpl.java @@ -0,0 +1,57 @@ +package com.student.zhang.service.impl; + +import com.student.zhang.entity.User; +import com.student.zhang.exception.ServiceValidationException; +import com.student.zhang.mapper.IUserMapper; +import com.student.zhang.service.IUserService; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +/** + * 班级服务实现类 + */ +@Service("userService") +public class UserServiceImpl implements IUserService { + + @Resource + private IUserMapper userMapper; + + @Override + public void login(User user) throws ServiceValidationException { + User loginUser = userMapper.selectByAccount(user.getAccount()); + if (loginUser == null) { + //未找到该用户 + throw new ServiceValidationException("登录失败,账号不存在,请前往注册", 401); + } + if (!loginUser.getPassword().equals(user.getPassword())) { + //检测到用户,但是密码错误 + throw new ServiceValidationException("登录失败,账号或密码错误", 401); + } + + } + @Override + public User getByAccount(String account) { + return userMapper.selectByAccount(account); + } + + @Override + public void downloadFile(String account) { + int deMoney = 5; //单次下载扣除的积分 + User user = userMapper.selectByAccount(account); //获取当前登录者对象 + if (user.getMoney() < 5) { + //积分不足,不允许下载 + throw new ServiceValidationException("积分不足,不允许下载", 402); + } + userMapper.update(account,deMoney); //执行扣除积分 + } + + @Override + public boolean register(User user) { + if (userMapper.selectByAccount(user.getAccount())!=null) + throw new ServiceValidationException("注册失败,账号已经存在",402); + user.setMoney(100); //用户注册就有100元 + return userMapper.insert(user)>0; + } + +} diff --git a/src/main/java/com/student/zhang/utils/SecurityUtils.java b/src/main/java/com/student/zhang/utils/SecurityUtils.java new file mode 100644 index 0000000..3bb66cb --- /dev/null +++ b/src/main/java/com/student/zhang/utils/SecurityUtils.java @@ -0,0 +1,35 @@ +package com.student.zhang.utils; + +import java.security.MessageDigest; + +public class SecurityUtils { + + /** + * MD5加密 + * + * @param input + * @return + */ + public static String md5Encrypt(String input) { + char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; + try { + byte[] btInput = input.getBytes(); + MessageDigest mdInst = MessageDigest.getInstance("MD5"); + mdInst.update(btInput); + byte[] md = mdInst.digest(); + int j = md.length; + char str[] = new char[j * 2]; + int k = 0; + for (int i = 0; i < j; i++) { + byte byte0 = md[i]; + str[k++] = hexDigits[byte0 >>> 4 & 0xf]; + str[k++] = hexDigits[byte0 & 0xf]; + } + return new String(str); + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + +} diff --git a/src/main/java/com/student/zhang/utils/ServletUtils.java b/src/main/java/com/student/zhang/utils/ServletUtils.java new file mode 100644 index 0000000..e37e00f --- /dev/null +++ b/src/main/java/com/student/zhang/utils/ServletUtils.java @@ -0,0 +1,28 @@ +package com.student.zhang.utils; + +import javax.servlet.ServletContext; + +public class ServletUtils { + + /** + * 记录访问量 + * @param context + * @return 返回访问量 + */ + public static int recordVisits(ServletContext context) { +// Object visitsObj = context.getAttribute("visits"); //从上下文属性中获取visits属性值 +// if (visitsObj == null) { +// //获取上下文初始化参数,然后赋值给visits对象 +// visits = Integer.parseInt(context.getInitParameter("visits")); +// } else { +// visits = Integer.parseInt(visitsObj.toString()); +// } + + + int visits = Integer.parseInt(context.getAttribute("visits").toString());//从上下文属性中获取visits属性值 + //获取完之后,再将visits存入上下文属性中 + context.setAttribute("visits", ++visits); + return visits; + } + +} diff --git a/src/main/java/com/student/zhang/utils/TokenUtils.java b/src/main/java/com/student/zhang/utils/TokenUtils.java new file mode 100644 index 0000000..e9de29d --- /dev/null +++ b/src/main/java/com/student/zhang/utils/TokenUtils.java @@ -0,0 +1,58 @@ +package com.student.zhang.utils; + +import com.auth0.jwt.JWT; +import com.auth0.jwt.JWTVerifier; +import com.auth0.jwt.algorithms.Algorithm; +import com.auth0.jwt.interfaces.DecodedJWT; + +import java.util.Date; + +/** + * 令牌工具类 + */ +public class TokenUtils { + + final static String issuer = "hong"; + final static String secret = "123456"; + + static Algorithm algorithm = Algorithm.HMAC256(secret); //创建一个HMAC256算法对象 + + /** + * 生成令牌 + * @param sign 标识 + * @param issuedTime 令牌创建时间 + * @param expiresTime 令牌过期时间 + * @return + */ + public static String generate(Object sign, Date issuedTime, Date expiresTime) { + String token = JWT.create() + .withIssuer(issuer) //配置令牌创建者 + .withIssuedAt(issuedTime) //配置令牌创建时间 + .withExpiresAt(expiresTime) //配置令牌过期时间 + .withClaim("sign", sign.toString()) //配置令牌携带标识 + .sign(algorithm); //完成签名,并生成token + + return token; + } + + + /** + * 验证Token + * @param token + * @return 令牌携带标识,如果返回了正常的字符串,说明验证通过。如果返回null,说明验证未通过。 + */ + public static String verify(String token) { + try { + JWTVerifier verifier = JWT.require(algorithm).withIssuer(issuer).build(); //创建JWT验证器对象 + DecodedJWT decodedJWT = verifier.verify(token); + String result = decodedJWT.getClaim("sign").toString(); + if (result.startsWith("\"")) result = result.substring(1); + if (result.endsWith("\"")) result = result.substring(0, result.length() - 1); + return result; + } catch (Exception e) { + System.err.println("Token '" + token + "' is not certified\t" + e.getMessage()); + return null; + } + } + +} diff --git a/src/main/java/com/student/zhang/utils/ViewUtils.java b/src/main/java/com/student/zhang/utils/ViewUtils.java new file mode 100644 index 0000000..8aa7f67 --- /dev/null +++ b/src/main/java/com/student/zhang/utils/ViewUtils.java @@ -0,0 +1,35 @@ +package com.student.zhang.utils; + + + +import com.alibaba.fastjson.JSON; +import com.alibaba.fastjson.JSONObject; + +import java.time.LocalDateTime; + +/** + * 视图工作类 + */ +public class ViewUtils { + + /** + * 返回JSON数据 + * @param message + * @param value + * @param state + * @return + */ + public static String view(String message, Object value, int state) { + JSONObject object = new JSONObject(true); + object.put("state", state); + if (message != null) { + object.put("message", message); + } + if (value != null) { + object.put("value", JSON.toJSON(value)); + } + object.put("timestamp", LocalDateTime.now()); + return object.toJSONString(); + } + +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..138aff3 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,21 @@ +mybatis: + mapper-locations: classpath:mapper/*xml + configuration: + map-underscore-to-camel-case: true + cache-enabled: true +server: + port: 8080 + servlet: + context-path: /api +spring: + application: + name: Study-SpringBoot + datasource: + driver-class-name: com.mysql.cj.jdbc.Driver + name: defaultDataSource + password: 1149591237 + url: jdbc:mysql://localhost:3306/school?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8 + username: root +logging: + level: + com.student.zhang.mapper: trace diff --git a/src/main/resources/banner.txt b/src/main/resources/banner.txt new file mode 100644 index 0000000..2224369 --- /dev/null +++ b/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + + _____________________________________________________ + _______ | | + / _____ | | 项目启动啦 | + / /(__) || | | + ________/ / |OO| || | | + | |-------|| | | +(| | -.|| |_______________________ | + | ____ \ ||_________||____________ | ____ ____ | +/| / __ \ |______|| / __ \ / __ \ | | / __ \ / __ \ |\ +\|| / \ |_______________| / \ |_| / \ |__| |___________| / \ |__| / \|_|/ + | () | | () | | () | | () | | () | + \__/ \__/ \__/ \__/ \__/ \ No newline at end of file diff --git a/src/main/resources/mapper/clazz.xml b/src/main/resources/mapper/clazz.xml new file mode 100644 index 0000000..a0d3cbb --- /dev/null +++ b/src/main/resources/mapper/clazz.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/course.xml b/src/main/resources/mapper/course.xml new file mode 100644 index 0000000..c2a9092 --- /dev/null +++ b/src/main/resources/mapper/course.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/score.xml b/src/main/resources/mapper/score.xml new file mode 100644 index 0000000..e414277 --- /dev/null +++ b/src/main/resources/mapper/score.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/student.xml b/src/main/resources/mapper/student.xml new file mode 100644 index 0000000..1c19121 --- /dev/null +++ b/src/main/resources/mapper/student.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/systemLog.xml b/src/main/resources/mapper/systemLog.xml new file mode 100644 index 0000000..7457d89 --- /dev/null +++ b/src/main/resources/mapper/systemLog.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/teacher.xml b/src/main/resources/mapper/teacher.xml new file mode 100644 index 0000000..daea8af --- /dev/null +++ b/src/main/resources/mapper/teacher.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/user.xml b/src/main/resources/mapper/user.xml new file mode 100644 index 0000000..4dc12e9 --- /dev/null +++ b/src/main/resources/mapper/user.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/java/com/student/zhang/StudySpringBootApplicationTests.java b/src/test/java/com/student/zhang/StudySpringBootApplicationTests.java new file mode 100644 index 0000000..72791dc --- /dev/null +++ b/src/test/java/com/student/zhang/StudySpringBootApplicationTests.java @@ -0,0 +1,36 @@ +package com.student.zhang; + +import com.student.zhang.entity.User; +import com.student.zhang.mapper.IUserMapper; +import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +import javax.annotation.Resource; + +@SpringBootTest +@Slf4j +class StudySpringBootApplicationTests { + + @Test + void contextLoads() { + + + } + + @Resource + IUserMapper userMapper; + @Test + public void testLogin(){ + log.info("注册成功!"); + userMapper.insert(new User("测试","123456")); + } + + @Test + public void getUser(){ + User user = userMapper.selectByAccount("root"); + log.info(user.toString()); + } + + +} -- Gitee From 1fafc12a4ff39503339471558936909f1f53dd56 Mon Sep 17 00:00:00 2001 From: zhang-yi0678 <1149591237> Date: Tue, 6 Dec 2022 15:56:37 +0800 Subject: [PATCH 2/2] 1 --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ad29e8c..0c0c930 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +<<<<<<< HEAD +======= +<<<<<<< HEAD +>>>>>>> 7119a3d (first) # 笔记复习记录 #### 介绍 @@ -37,3 +41,12 @@ Gitee 是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) +<<<<<<< HEAD +======= +======= +# 工程简介 + +# 延伸阅读 + +>>>>>>> bce3fce (1) +>>>>>>> 7119a3d (first) -- Gitee