diff --git a/a.txt b/a.txt deleted file mode 100644 index 4832cdb..0000000 --- a/a.txt +++ /dev/null @@ -1,50 +0,0 @@ -if(check(三要素)) //不一致失败 -{ - exit(直接拒绝) -} - -if(check(机构K手机在网时长)) //小于6个月失败 -{ - exit(直接拒绝) -} - -if(check(机构K手机状态)) //不在网失败 -{ - exit(直接拒绝) -} - -if (check(机构R黑名单)) //黑名单命中拒绝 -{ - exit(直接拒绝) -} - -switch(check(融360信用报告得分)) -{ - case (>=600): - { - - } - case (>=450 && < 600): - { - if (check(芝麻信用分) <= 650) //芝麻分接入进度待定 - { - exit(直接拒绝) - } - - if (check(小红唇平台消费记录)) //消费金额<500 - { - exit(直接拒绝) - } - - if (!check(活体识别)) //未通过 - { - exit(直接拒绝) - } - } - case (<=450): - { - exit(直接拒绝) - } -} - -[{"xhc": {"rangeLow": 450, "rangeHigh": 10000, "ruleResult": 0}, "zhima": {"rangeLow": 450, "rangeHigh": 10000, "ruleResult": 0}, "rangeLow": 450, "rangeHigh": 10000, "ruleResult": 0}] \ No newline at end of file diff --git a/b.txt b/b.txt new file mode 100644 index 0000000..1913040 --- /dev/null +++ b/b.txt @@ -0,0 +1 @@ +pre..... diff --git a/demo/.gitignore b/demo/.gitignore deleted file mode 100644 index 2af7cef..0000000 --- a/demo/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -target/ -!.mvn/wrapper/maven-wrapper.jar - -### STS ### -.apt_generated -.classpath -.factorypath -.project -.settings -.springBeans - -### IntelliJ IDEA ### -.idea -*.iws -*.iml -*.ipr - -### NetBeans ### -nbproject/private/ -build/ -nbbuild/ -dist/ -nbdist/ -.nb-gradle/ \ No newline at end of file diff --git a/demo/.mvn/wrapper/maven-wrapper.jar b/demo/.mvn/wrapper/maven-wrapper.jar deleted file mode 100644 index 9cc84ea..0000000 Binary files a/demo/.mvn/wrapper/maven-wrapper.jar and /dev/null differ diff --git a/demo/.mvn/wrapper/maven-wrapper.properties b/demo/.mvn/wrapper/maven-wrapper.properties deleted file mode 100644 index b573bb5..0000000 --- a/demo/.mvn/wrapper/maven-wrapper.properties +++ /dev/null @@ -1 +0,0 @@ -distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip diff --git a/demo/mvnw b/demo/mvnw deleted file mode 100755 index 5bf251c..0000000 --- a/demo/mvnw +++ /dev/null @@ -1,225 +0,0 @@ -#!/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 -# -# http://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. -# ---------------------------------------------------------------------------- - -# ---------------------------------------------------------------------------- -# Maven2 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 Migwn, 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)`" - # TODO classpath? -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 - -export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} -echo $MAVEN_PROJECTBASEDIR -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 - -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/demo/mvnw.cmd b/demo/mvnw.cmd deleted file mode 100644 index 019bd74..0000000 --- a/demo/mvnw.cmd +++ /dev/null @@ -1,143 +0,0 @@ -@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 http://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 Maven2 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 key stroke 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 enable echoing my 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 - -%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/demo/pom.xml b/demo/pom.xml deleted file mode 100644 index 5b9a1d2..0000000 --- a/demo/pom.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - 4.0.0 - - com.example - demo - 0.0.1-SNAPSHOT - jar - - demo - Demo project for Spring Boot - - - org.springframework.boot - spring-boot-starter-parent - 1.5.9.RELEASE - - - - - UTF-8 - UTF-8 - 1.8 - - - - - org.springframework.boot - spring-boot-starter-web - - - - org.springframework.boot - spring-boot-starter-test - test - - - - - org.springframework.cloud - spring-cloud-starter-config - 1.4.2.RELEASE - - - - - org.mybatis - mybatis-spring - 1.3.2 - - - - org.mybatis - mybatis - 3.4.6 - - - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - 1.3.2 - - - - - mysql - mysql-connector-java - 6.0.6 - - - - - - io.springfox - springfox-swagger2 - 2.8.0 - - - - - tk.mybatis - mapper - 3.5.3 - - - - org.mybatis.spring.boot - mybatis-spring-boot-starter - 1.3.2 - - - - - org.easyrules - easyrules-core - 2.5.0 - - - - - - - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - - diff --git a/demo/src/main/java/com/example/demo/DemoApplication.java b/demo/src/main/java/com/example/demo/DemoApplication.java deleted file mode 100644 index 8b46408..0000000 --- a/demo/src/main/java/com/example/demo/DemoApplication.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.example.demo; - -//import org.mybatis.spring.annotation.MapperScan; -import org.mybatis.spring.annotation.MapperScan; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.EnableAutoConfiguration; -import org.springframework.boot.autoconfigure.SpringBootApplication; -//@MapperScan("com.example.demo.dao") -@SpringBootApplication -@EnableAutoConfiguration -public class DemoApplication { - - public static void main(String[] args) { - SpringApplication.run(DemoApplication.class, args); - - } - -} diff --git a/demo/src/main/java/com/example/demo/controller/FizzRule.java b/demo/src/main/java/com/example/demo/controller/FizzRule.java deleted file mode 100644 index 8069df0..0000000 --- a/demo/src/main/java/com/example/demo/controller/FizzRule.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.example.demo.controller; - -import org.easyrules.annotation.Condition; -import org.easyrules.annotation.Priority; -import org.easyrules.annotation.Rule; - -import javax.xml.ws.Action; - -@Rule -public class FizzRule { - - private int input; - - @Condition - public boolean isFizz() { - return input % 5 == 0; - } - - @Action - public void printFizz() { - System.out.print("fizz"); - } - - public void setInput(int input) { - this.input = input; - } - - @Priority - public int getPriority() { - return 1; - } -} - diff --git a/demo/src/main/java/com/example/demo/controller/TestController.java b/demo/src/main/java/com/example/demo/controller/TestController.java deleted file mode 100644 index 909b76b..0000000 --- a/demo/src/main/java/com/example/demo/controller/TestController.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.example.demo.controller; - -import com.example.demo.dao.UserDao; -import com.example.demo.entity.User; -import com.example.demo.service.UserService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.web.bind.annotation.*; - -@RestController -@RequestMapping(value = "/test") -public class TestController { - - - @Autowired - UserDao userDao; - - @GetMapping("/select") - public User select(@RequestParam("id") Integer id) { - - System.out.println(new User()); - System.out.println("================================"); - return userDao.selectById(id); - } - - - -} diff --git a/demo/src/main/java/com/example/demo/dao/UserDao.java b/demo/src/main/java/com/example/demo/dao/UserDao.java deleted file mode 100644 index 0c24763..0000000 --- a/demo/src/main/java/com/example/demo/dao/UserDao.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.example.demo.dao; - -// -//import org.apache.ibatis.annotations.Mapper; -import com.example.demo.entity.User; -import org.apache.ibatis.annotations.Param; -import org.springframework.stereotype.Repository; - -@Repository -public interface UserDao { - - User selectById(@Param("id")int id); -} diff --git a/demo/src/main/java/com/example/demo/db/MysqlDataSource.java b/demo/src/main/java/com/example/demo/db/MysqlDataSource.java deleted file mode 100644 index 8bdf804..0000000 --- a/demo/src/main/java/com/example/demo/db/MysqlDataSource.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.example.demo.db; - -import org.apache.ibatis.session.SqlSessionFactory; -import org.mybatis.spring.SqlSessionFactoryBean; -import org.mybatis.spring.annotation.MapperScan; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; -import org.springframework.boot.context.properties.ConfigurationProperties; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.core.io.support.PathMatchingResourcePatternResolver; -import org.springframework.jdbc.datasource.DataSourceTransactionManager; - -import javax.sql.DataSource; - -/** - * Created by liubing on 2017/3/10. - */ - -@Configuration("mysqlDatasourceConfig") -@MapperScan(basePackages = "com.example.demo.dao", sqlSessionFactoryRef = "mysqlSqlSessionFactory") -public class MysqlDataSource { - private static final String XMLPATH = "classpath*:/mapper/mysql/*.xml"; - - @Bean(name = "mysqlDataSource") - @Qualifier("mysqlDataSource") -// @ConfigurationProperties(prefix = "db.mapper.mysql") - @ConfigurationProperties(prefix = "db.mysql") - public DataSource dataSource() { - return DataSourceBuilder.create().build(); - } - - @Bean(name = "mysqlSqlSessionFactory") - @Qualifier("mysqlSqlSessionFactory") - public SqlSessionFactory sqlSessionFactory(@Qualifier("mysqlDataSource") DataSource dataSource) throws Exception { - SqlSessionFactoryBean sessionFactoryBean = new SqlSessionFactoryBean(); - sessionFactoryBean.setDataSource(dataSource); - sessionFactoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources(XMLPATH)); - return sessionFactoryBean.getObject(); - } - - @Bean(name = "mysqlTransactionManager") - public DataSourceTransactionManager transactionManager(@Qualifier("mysqlDataSource") DataSource dataSource) { - return new DataSourceTransactionManager(dataSource); - } - -} diff --git a/demo/src/main/java/com/example/demo/entity/User.java b/demo/src/main/java/com/example/demo/entity/User.java deleted file mode 100644 index 71b30e8..0000000 --- a/demo/src/main/java/com/example/demo/entity/User.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.example.demo.entity; - -import org.springframework.boot.context.properties.ConfigurationProperties; - -@ConfigurationProperties(prefix = "user") -public class User { - - private String name; - private String mobile; - private int age; - - public int getAge() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public String getName() { - return name; - } - - public String getMobile() { - return mobile; - } - - public void setMobile(String mobile) { - this.mobile = mobile; - } - - public void setName(String name) { - this.name = name; - } -} diff --git a/demo/src/main/java/com/example/demo/rules/BuzzRule.java b/demo/src/main/java/com/example/demo/rules/BuzzRule.java deleted file mode 100644 index daed1f5..0000000 --- a/demo/src/main/java/com/example/demo/rules/BuzzRule.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.annotation.Action; -import org.easyrules.annotation.Condition; -import org.easyrules.annotation.Priority; -import org.easyrules.annotation.Rule; - -@Rule -public class BuzzRule { - - private int input; - - @Condition - public boolean isBuzz() { - return input % 7 == 0; - } - - @Action - public void printBuzz() { - System.out.print("buzz"); - } - - public void setInput(int input) { - this.input = input; - } - - @Priority - public int getPriority() { - return 3; - } -} diff --git a/demo/src/main/java/com/example/demo/rules/FizzBuzzRule.java b/demo/src/main/java/com/example/demo/rules/FizzBuzzRule.java deleted file mode 100644 index 463ba06..0000000 --- a/demo/src/main/java/com/example/demo/rules/FizzBuzzRule.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.core.CompositeRule; - -public class FizzBuzzRule extends CompositeRule { - -// public FizzBuzzRule(Object... rules) { -// for (Object rule : rules) { -// addRule(rule); -// } -// } - public FizzBuzzRule(FizzRule fizzRule,BuzzRule buzzRule) { - addRule(fizzRule); - addRule(buzzRule); - } - - @Override - public int getPriority() { - return 0; - } -} - diff --git a/demo/src/main/java/com/example/demo/rules/FizzBuzzWithEasyRules.java b/demo/src/main/java/com/example/demo/rules/FizzBuzzWithEasyRules.java deleted file mode 100644 index ab30ea6..0000000 --- a/demo/src/main/java/com/example/demo/rules/FizzBuzzWithEasyRules.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.api.RulesEngine; -import org.easyrules.core.RulesEngineBuilder; - -public class FizzBuzzWithEasyRules { - - public static void main(String[] args) { - - // create rules engine - RulesEngine fizzBuzzEngine = - RulesEngineBuilder.aNewRulesEngine() - .withSkipOnFirstAppliedRule(false) // 如果第一个规则满足条件,后面的规则将不再执行 - .withSilentMode(true) - .build(); - - System.out.println("==================================="); - // create rules - FizzRule fizzRule = new FizzRule(); - FizzRule2 fizzRule2 = new FizzRule2(); - BuzzRule buzzRule = new BuzzRule(); - FizzBuzzRule fizzBuzzRule = new FizzBuzzRule(fizzRule, buzzRule); - NonFizzBuzzRule nonFizzBuzzRule = new NonFizzBuzzRule(); -// -// // register rules - fizzBuzzEngine.registerRule(fizzRule); - fizzBuzzEngine.registerRule(fizzRule2); - fizzBuzzEngine.registerRule(buzzRule); - fizzBuzzEngine.registerRule(fizzBuzzRule); - fizzBuzzEngine.registerRule(nonFizzBuzzRule); -// - // fire rules - for (int i = 1; i <= 35; i++) { - fizzRule.setInput(i); - fizzRule2.setInput(i); - buzzRule.setInput(i); - nonFizzBuzzRule.setInput(i); - fizzBuzzEngine.fireRules(); - System.out.println("-----------------"+i); - } - } -} \ No newline at end of file diff --git a/demo/src/main/java/com/example/demo/rules/FizzRule.java b/demo/src/main/java/com/example/demo/rules/FizzRule.java deleted file mode 100644 index f61ab82..0000000 --- a/demo/src/main/java/com/example/demo/rules/FizzRule.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.annotation.Condition; -import org.easyrules.annotation.Priority; -import org.easyrules.annotation.Rule; -import org.easyrules.annotation.Action; - -@Rule -public class FizzRule { - - private int input; - - @Condition - public boolean isFizz() { - return input % 5 == 0; - } - - @Action - public void printFizz() { - System.out.print("fizz-"); - } - - public void setInput(int input) { - this.input = input; - } - - @Priority - public int getPriority() { - return 1; - } -} - diff --git a/demo/src/main/java/com/example/demo/rules/FizzRule2.java b/demo/src/main/java/com/example/demo/rules/FizzRule2.java deleted file mode 100644 index 10a3142..0000000 --- a/demo/src/main/java/com/example/demo/rules/FizzRule2.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.annotation.Action; -import org.easyrules.annotation.Condition; -import org.easyrules.annotation.Priority; -import org.easyrules.annotation.Rule; - -@Rule -public class FizzRule2 { - - private int input; - - @Condition - public boolean isFizz() { - return input % 5 == 0; - } - - @Action - public void printFizz() { - System.out.print("fizz2-"); - } - - public void setInput(int input) { - this.input = input; - } - - @Priority - public int getPriority() { - return 2; - } -} - diff --git a/demo/src/main/java/com/example/demo/rules/NonFizzBuzzRule.java b/demo/src/main/java/com/example/demo/rules/NonFizzBuzzRule.java deleted file mode 100644 index fadf51a..0000000 --- a/demo/src/main/java/com/example/demo/rules/NonFizzBuzzRule.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.example.demo.rules; - -import org.easyrules.annotation.Action; -import org.easyrules.annotation.Condition; -import org.easyrules.annotation.Priority; -import org.easyrules.annotation.Rule; - - -@Rule -public class NonFizzBuzzRule { - - private int input; - - @Condition - public boolean isNotFizzNorBuzz() { - // can return true here - return input % 5 != 0 || input % 7 != 0; - } - - @Action - public void printInput() { - System.out.print(input); - } - - public void setInput(int input) { - this.input = input; - } - - @Priority - public int getPriority() { - return 3; - } -} - diff --git a/demo/src/main/java/com/example/demo/service/UserService.java b/demo/src/main/java/com/example/demo/service/UserService.java deleted file mode 100644 index d4adabd..0000000 --- a/demo/src/main/java/com/example/demo/service/UserService.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.example.demo.service; - -//import com.example.demo.dao.UserDao; -import com.example.demo.dao.UserDao; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -@Service -public class UserService { - - @Autowired - UserDao userDao; - -} diff --git a/demo/src/main/resources/application.properties b/demo/src/main/resources/application.properties deleted file mode 100644 index 2782c7d..0000000 --- a/demo/src/main/resources/application.properties +++ /dev/null @@ -1,19 +0,0 @@ -#spring.datasource.url=jdbc:mysql://localhost:3306/test_risk -#spring.datasource.username=root -#spring.datasource.password= -#spring.datasource.driver-class-name=com.mysql.jdbc.Driver -#spring.datasource.type=com.alibaba.druid.pool.DruidDataSource - -#mapperLocations: classpath:mapper/*.xml - -#mybatis.mapper-locations=classpath:mapper/mysql/*.xml - - -spring.cloud.config.profile=${config.profile:test} -spring.cloud.config.name=mysql - - -logging.level.com.example.demo.dao=debug - -user.name=zhangsan -user.age=1 diff --git a/demo/src/main/resources/bootstrap.yml b/demo/src/main/resources/bootstrap.yml deleted file mode 100644 index 856e8cb..0000000 --- a/demo/src/main/resources/bootstrap.yml +++ /dev/null @@ -1,5 +0,0 @@ -spring: - cloud: - config: - uri: ${CONFIG_URL:http://172.21.130.31:8888} - diff --git a/demo/src/main/resources/mapper/mysql/UserDaoMapper.xml b/demo/src/main/resources/mapper/mysql/UserDaoMapper.xml deleted file mode 100644 index 1dbce83..0000000 --- a/demo/src/main/resources/mapper/mysql/UserDaoMapper.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/demo/src/test/java/com/example/demo/DemoApplicationTests.java b/demo/src/test/java/com/example/demo/DemoApplicationTests.java deleted file mode 100644 index d107cb7..0000000 --- a/demo/src/test/java/com/example/demo/DemoApplicationTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.example.demo; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class DemoApplicationTests { - - public void contextLoads() { - - - } - -} diff --git a/spring-cloud b/spring-cloud deleted file mode 160000 index 1d8d835..0000000 --- a/spring-cloud +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1d8d83521af7962897047c2773aef5f390436739