commit 7b85a0a39ebdf5961bfc5c2b77d3f962474e08f6
Author: lwj <3529558005@qq.com>
Date: Mon Jul 22 09:37:22 2024 +0800
日考7_22
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5ff6309
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,38 @@
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### IntelliJ IDEA ###
+.idea/modules.xml
+.idea/jarRepositories.xml
+.idea/compiler.xml
+.idea/libraries/
+*.iws
+*.iml
+*.ipr
+
+### Eclipse ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
+
+### Mac OS ###
+.DS_Store
\ No newline at end of file
diff --git a/.idea/$PROJECT_FILE$ b/.idea/$PROJECT_FILE$
new file mode 100644
index 0000000..58b7e3e
--- /dev/null
+++ b/.idea/$PROJECT_FILE$
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..a82f30f
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..60003b0
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/qaplug_profiles.xml b/.idea/qaplug_profiles.xml
new file mode 100644
index 0000000..9a7566c
--- /dev/null
+++ b/.idea/qaplug_profiles.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bwie-common/pom.xml b/bwie-common/pom.xml
new file mode 100644
index 0000000..4c85f8c
--- /dev/null
+++ b/bwie-common/pom.xml
@@ -0,0 +1,78 @@
+
+
+ 4.0.0
+
+ comm.bwie
+ rikao7_22
+ 1.0-SNAPSHOT
+
+
+ bwie-common
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ com.alibaba
+ fastjson
+ 1.2.79
+
+
+ org.projectlombok
+ lombok
+
+
+
+ org.apache.httpcomponents
+ httpcore
+ 4.4.12
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.5.13
+
+
+
+
+ com.alibaba
+ druid-spring-boot-starter
+ 1.1.10
+
+
+ org.mybatis.spring.boot
+ mybatis-spring-boot-starter
+ 1.3.1
+
+
+ commons-lang
+ commons-lang
+ 2.6
+
+
+ com.fasterxml.jackson.core
+ jackson-annotations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bwie-common/src/main/java/comm/bwie/CommonApplication.java b/bwie-common/src/main/java/comm/bwie/CommonApplication.java
new file mode 100644
index 0000000..04c851b
--- /dev/null
+++ b/bwie-common/src/main/java/comm/bwie/CommonApplication.java
@@ -0,0 +1,13 @@
+package comm.bwie;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.scheduling.annotation.EnableScheduling;
+
+@SpringBootApplication
+@EnableScheduling
+public class CommonApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(CommonApplication.class);
+ }
+}
diff --git a/bwie-common/src/main/java/comm/bwie/controller/ScheduledPrintNameService.java b/bwie-common/src/main/java/comm/bwie/controller/ScheduledPrintNameService.java
new file mode 100644
index 0000000..9ef21f5
--- /dev/null
+++ b/bwie-common/src/main/java/comm/bwie/controller/ScheduledPrintNameService.java
@@ -0,0 +1,17 @@
+package comm.bwie.controller;
+
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Controller;
+
+@Controller
+public class ScheduledPrintNameService {
+ //每隔5秒钟进行执行
+ @Scheduled(cron = "5 * * * * ?")
+// public static void main(String[] args) {
+// System.out.println("李文杰");
+// }
+ public void findName(){
+ System.out.println("李文杰");
+ }
+
+}
diff --git a/bwie-common/src/main/resources/application.yml b/bwie-common/src/main/resources/application.yml
new file mode 100644
index 0000000..77ab013
--- /dev/null
+++ b/bwie-common/src/main/resources/application.yml
@@ -0,0 +1,102 @@
+# 服务器相关
+
+server:
+ port: 10001
+
+spring:
+ mvc:
+ pathmatch:
+ matching-strategy: ant_path_matcher
+ datasource:
+ driver-class-name: com.mysql.cj.jdbc.Driver
+# url: jdbc:mysql://49.235.151.84:3306/sql15?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false
+# username: root
+# password: sjd@123
+# druid:
+# # 下面为连接池的补充设置,应用到上面所有数据源中
+# # 初始化大小,最小,最大
+# initial-size: 5
+# min-idle: 5
+# max-active: 20
+# # 配置获取连接等待超时的时间
+# max-wait: 60000
+# # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
+# time-between-eviction-runs-millis: 60000
+# # 配置一个连接在池中最小生存的时间,单位是毫秒
+# min-evictable-idle-time-millis: 300000
+# validation-query: SELECT 1 FROM DUAL
+# test-while-idle: true
+# test-on-borrow: false
+# test-on-return: false
+# # 打开PSCache,并且指定每个连接上PSCache的大小
+# pool-prepared-statements: true
+# # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
+# max-pool-prepared-statement-per-connection-size: 20
+# filters: stat,wall
+# use-global-data-source-stat: true
+# # 通过connectProperties属性来打开mergeSql功能;慢SQL记录
+# connect-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
+# application:
+# name: shop-server
+# redis:
+# host: 49.235.151.84
+# port: 6379
+# mail:
+# host: smtp.qq.com
+# username: 2833784085@qq.com
+# password: mkabdcywzisgdggg
+# port: 587 # 这个端口根据实际情况配置,一般都是465
+# protocol: smtp # 这里应该是不用改的,我没试过其他的配置
+# test-connection: false
+# default-encoding: UTF-8
+# properties:
+# mail:
+# debug: true
+# smtp:
+# auth: true
+# connectiontimeout: 10000
+# timeout: 10000
+# writetimeout: 10000
+# socketFactory:
+# class: javax.net.ssl.SSLSocketFactory
+# port: 587
+# starttls:
+# enable: true
+# required: true
+# select:
+# multipart:
+# max-file-size: 100MB # 最大支持文件大小
+# max-request-size: 100MB # 最大请求大小
+# enabled: true
+
+
+## mybatis
+#mybatis:
+# configuration:
+# map-underscore-to-camel-case: true
+# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
+# mapper-locations: classpath*:mapper/*Mapper.xml
+# global-config:
+# db-config:
+# id-type: auto
+#
+
+#aliyun:
+# end-point: oss-cn-shanghai.aliyuncs.com
+# access-key-id: LTAI5tSFAGrms29r1xwEFtRM
+# access-key-secret: rztMfqxdYlsMUtIoy9bIOSGEKCWQT7
+# access-pre: https://dongxiaojie.oss-cn-shanghai.aliyuncs.com
+# bucket-name: dongxiaojie
+
+#fdfs:
+# so-timeout: 1500 # socket 连接时长
+# connect-timeout: 600 # 连接 tracker 服务器超时时长
+# # 这两个是你服务器的 IP 地址,注意 23000 端口也要打开,阿里云服务器记得配置安全组。tracker 要和 stroage 服务进行交流
+# tracker-list: 49.235.151.84:22122
+# web-server-url: 49.235.151.84:8888
+# pool:
+# jmx-enabled: false
+# # 生成缩略图
+# thumb-image:
+# height: 500
+# width: 500
diff --git a/img.png b/img.png
new file mode 100644
index 0000000..3d5cf66
Binary files /dev/null and b/img.png differ
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..e029c99
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,31 @@
+
+
+ 4.0.0
+
+ comm.bwie
+ rikao7_22
+ 1.0-SNAPSHOT
+ pom
+
+ bwie-common
+
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ spring-boot-starter-parent
+ org.springframework.boot
+ 2.6.2
+
+
+
+
diff --git a/src/main/java/comm/bwie/CommApplication.java b/src/main/java/comm/bwie/CommApplication.java
new file mode 100644
index 0000000..2bd3479
--- /dev/null
+++ b/src/main/java/comm/bwie/CommApplication.java
@@ -0,0 +1,4 @@
+package comm.bwie;
+
+public class CommApplication {
+}