Compare commits
42 Commits
0.21
...
v2.3-local
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40a3a12233 | ||
|
|
7a145c40bd | ||
|
|
89efefd7c1 | ||
|
|
c3e0a2cf6e | ||
|
|
b80bdb6370 | ||
|
|
9f35e58970 | ||
|
|
e0d0e9701b | ||
|
|
90c2dc3a05 | ||
|
|
d51ffb35c9 | ||
|
|
eaec895ff0 | ||
|
|
4d660bbff8 | ||
|
|
70f55ef987 | ||
|
|
773a759473 | ||
|
|
ed7ce1279a | ||
|
|
524f0f63ae | ||
|
|
a6699e26a7 | ||
|
|
b79710a1fc | ||
|
|
af50397afb | ||
|
|
888b0e670f | ||
|
|
6067550bd2 | ||
|
|
e0d5d784f8 | ||
|
|
5ae844ea33 | ||
|
|
6eaa123087 | ||
|
|
f8c2ea8206 | ||
|
|
cf10cec717 | ||
|
|
7513fac8d8 | ||
|
|
f46c78b9f1 | ||
|
|
659c8e6f3b | ||
|
|
3d6530f148 | ||
|
|
0c00085e9f | ||
|
|
474b16c662 | ||
|
|
3a18a6b7a6 | ||
|
|
9cb5e77bb5 | ||
|
|
392c50ceb9 | ||
|
|
38152b7786 | ||
|
|
e11418a3fa | ||
|
|
62babb92ac | ||
|
|
27096c2cd2 | ||
|
|
fc3ed87fe7 | ||
|
|
a58a15c674 | ||
|
|
57785ac9da | ||
|
|
029d17a66c |
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
||||
*
|
||||
!target/dailylove*
|
||||
!Dockerfile
|
||||
33
.gitignore
vendored
33
.gitignore
vendored
@@ -1,33 +0,0 @@
|
||||
HELP.md
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
!**/src/main/**/target/
|
||||
!**/src/test/**/target/
|
||||
|
||||
### 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/
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
@@ -1,7 +1,6 @@
|
||||
FROM openjdk:8
|
||||
FROM ubuntu:jammy-20231004
|
||||
MAINTAINER bamanker
|
||||
ADD target/dailyLove-0.1.6.jar /home/dailyLove/
|
||||
ADD start.sh /home/dailyLove/
|
||||
RUN chmod +x /home/dailyLove/start.sh
|
||||
COPY target/dailylove /home/dailylove/app
|
||||
EXPOSE 13145
|
||||
CMD ["sh","/home/dailyLove/start.sh"]
|
||||
WORKDIR /home/dailylove/out
|
||||
ENTRYPOINT /home/dailylove/app -XX:StartFlightRecording='filename=recording.jfr,dumponexit=true,duration=10s'
|
||||
79
deploy.yaml
Normal file
79
deploy.yaml
Normal file
@@ -0,0 +1,79 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: $APP_NAME
|
||||
version: $TAG
|
||||
name: $APP_NAME
|
||||
namespace: dl-proj #一定要写名称空间
|
||||
spec:
|
||||
progressDeadlineSeconds: 600
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: $APP_NAME
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxSurge: 50%
|
||||
maxUnavailable: 50%
|
||||
type: RollingUpdate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: $APP_NAME
|
||||
version: $TAG
|
||||
spec:
|
||||
imagePullSecrets:
|
||||
- name: aliyun-docker-hub #提前在项目下配置访问阿里云的账号密码
|
||||
containers:
|
||||
- image: $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:$TAG
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /test
|
||||
port: 13145
|
||||
timeoutSeconds: 10
|
||||
failureThreshold: 30
|
||||
periodSeconds: 5
|
||||
imagePullPolicy: Always
|
||||
name: app
|
||||
ports:
|
||||
- containerPort: 13145
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
cpu: 99m
|
||||
memory: 65Mi
|
||||
terminationMessagePath: /dev/termination-log
|
||||
terminationMessagePolicy: File
|
||||
env:
|
||||
- name: TZ
|
||||
value: "Asia/Shanghai"
|
||||
dnsPolicy: ClusterFirst
|
||||
restartPolicy: Always
|
||||
terminationGracePeriodSeconds: 30
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app: $APP_NAME
|
||||
name: $APP_NAME
|
||||
namespace: dl-proj
|
||||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 13145
|
||||
protocol: TCP
|
||||
targetPort: 13145
|
||||
selector:
|
||||
app: $APP_NAME
|
||||
sessionAffinity: None
|
||||
type: ClusterIP
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: $APP_NAME # ServiceAccount的名字
|
||||
namespace: dl-proj # serviceaccount的namespace
|
||||
labels:
|
||||
app: $APP_NAME #ServiceAccount的标签
|
||||
97
pom.xml
97
pom.xml
@@ -5,22 +5,25 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.5</version>
|
||||
<version>3.1.5</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
<groupId>com.bamanker</groupId>
|
||||
<artifactId>dailyLove</artifactId>
|
||||
<version>0.1.6</version>
|
||||
<artifactId>dailylove</artifactId>
|
||||
<version>v2.3-local</version>
|
||||
<name>dailyLove</name>
|
||||
<description>dailyLove</description>
|
||||
<description>dailylove-forK8S</description>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<java.version>17</java.version>
|
||||
<fastjson.version>2.0.21</fastjson.version>
|
||||
<openfeign.version>3.1.5</openfeign.version>
|
||||
<nacos.version>2021.1</nacos.version>
|
||||
<hutool.version>5.8.10</hutool.version>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<fastjson.version>2.0.25</fastjson.version>
|
||||
<openfeign.version>4.0.4</openfeign.version>
|
||||
<hutool.version>5.8.18</hutool.version>
|
||||
<docker.private.repository>registry.cn-chengdu.aliyuncs.com/bamanker</docker.private.repository>
|
||||
<!-- <docker.private.repository>172.17.0.1:10888/my_work</docker.private.repository>-->
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -28,15 +31,6 @@
|
||||
<artifactId>hutool-core</artifactId>
|
||||
<version>${hutool.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
||||
<version>3.1.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
@@ -53,27 +47,86 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-devtools</artifactId>
|
||||
<scope>runtime</scope>
|
||||
<optional>true</optional>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.graalvm.buildtools</groupId>
|
||||
<artifactId>native-maven-plugin</artifactId>
|
||||
<version>0.9.27</version>
|
||||
<!--为本机映像程序添加配置,生成的配置文件位于
|
||||
META-INF/native-image/groupID/artifactID/native-image.properties
|
||||
也可以手动配置-->
|
||||
<configuration>
|
||||
<buildArgs>
|
||||
<!--开启dashboard-->
|
||||
<!-- <arg>-H:DashboardDump=dailylove -H:+DashboardAll</arg>-->
|
||||
<arg->-H:+ReportExceptionStackTraces</arg->
|
||||
<!--开启JFR-->
|
||||
<arg>--enable-monitoring=jfr</arg>
|
||||
<arg>--gc=G1</arg>
|
||||
<!-- <arg>--pgo</arg>-->
|
||||
<arg>-Ob</arg>
|
||||
<!-- <arg>-march=native</arg>-->
|
||||
<arg>-H:+BuildReport</arg>
|
||||
</buildArgs>
|
||||
<!--启动详细输出-->
|
||||
<verbose>true</verbose>
|
||||
<!--配置jvm参数-->
|
||||
<!-- <jvmArgs>
|
||||
</jvmArgs>-->
|
||||
<!--<agent>
|
||||
<enabled>true</enabled>
|
||||
<options>
|
||||
<option>experimental-class-loader-support</option>
|
||||
</options>
|
||||
</agent>-->
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.xenoamess.docker</groupId>
|
||||
<artifactId>dockerfile-maven-plugin</artifactId>
|
||||
<version>1.5.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>build</goal>
|
||||
<goal>push</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<!-- <username>bamanker</username>-->
|
||||
<!-- <password>Fz8803101</password>-->
|
||||
<repository>${docker.private.repository}/${project.artifactId}</repository>
|
||||
<tag>${project.version}</tag>
|
||||
<buildArgs>
|
||||
<NATIVE_FILE>${project.artifactId}</NATIVE_FILE>
|
||||
</buildArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
package com.bamanker.dailylove;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||||
import org.springframework.cloud.openfeign.FeignAutoConfiguration;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
|
||||
/**
|
||||
* @author bamanker
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableFeignClients
|
||||
//开启定时任务
|
||||
@EnableScheduling
|
||||
//@ImportAutoConfiguration({FeignAutoConfiguration.class})
|
||||
public class DailyLoveApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
@@ -0,0 +1,138 @@
|
||||
package com.bamanker.dailylove.config;
|
||||
|
||||
import cn.hutool.core.util.ClassUtil;
|
||||
import jakarta.annotation.PostConstruct;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.Field;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* 反射将所有项目类扫描加入到服务, 大力出奇迹的操作,感觉不太合适,不过先让服务跑起来
|
||||
*
|
||||
* @author bamanker
|
||||
*/
|
||||
@Component
|
||||
public class ClassReflectConfig {
|
||||
|
||||
static boolean begin = true;
|
||||
|
||||
@Value("${scanclass}")
|
||||
private Boolean scanclass;
|
||||
|
||||
@Autowired
|
||||
private ThreadPoolTaskExecutor executorService;
|
||||
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
|
||||
if (scanclass) {
|
||||
System.err.println("配置文件下 scanclass 开启了生成反射类");
|
||||
} else {
|
||||
System.err.println("配置文件下 scanclass 关闭了生成反射类");
|
||||
}
|
||||
|
||||
synchronized (ClassReflectConfig.class) {
|
||||
if (begin && scanclass) {
|
||||
begin = false;
|
||||
executorService.submit(() -> {
|
||||
|
||||
// {
|
||||
// // 先抓取上一次的文件,生成
|
||||
// try {
|
||||
// BufferedReader utf8Reader = ResourceUtil
|
||||
// .getUtf8Reader("classpath:/META-INF/native-image/reflect-config.json");
|
||||
// String res = utf8Reader.lines().collect(Collectors.joining());
|
||||
// List object = ProJsonUtil.toObject(res, List.class);
|
||||
// for (Object object2 : object) {
|
||||
// try {
|
||||
// Map object22 = (Map) object2;
|
||||
// handlerClass(Class.forName(ProMapUtil.getStr(object22, "name")));
|
||||
// } catch (Exception e) {
|
||||
// }
|
||||
// }
|
||||
// } catch (Exception e) {
|
||||
// log.error("生成文件异常", e);
|
||||
// }
|
||||
// }
|
||||
|
||||
{
|
||||
// 扫描系统第二级开始的包
|
||||
String packageName = ClassReflectConfig.class.getPackageName();
|
||||
String proPackageName = packageName.substring(0,
|
||||
packageName.indexOf(".", packageName.indexOf(".") + 1));
|
||||
|
||||
// 可以在这个地方,添加除了服务以外其他的包,将会加入反射,以供graalvm生成配置
|
||||
List<String> asList = Arrays.asList(proPackageName);
|
||||
|
||||
for (String spn : asList) {
|
||||
try {
|
||||
Set<Class<?>> doScan = ClassUtil.scanPackage(spn);
|
||||
for (Class clazz : doScan) {
|
||||
handlerClass(clazz);
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// handlerClass(RedisMessageListenerContainer.class);
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void handlerClass(Class clazz) {
|
||||
if (clazz.equals(ClassReflectConfig.class)) {
|
||||
// 跳过自己,避免形成循环
|
||||
return;
|
||||
}
|
||||
|
||||
executorService.submit(() -> {
|
||||
try {
|
||||
System.err.println("反射注入:" + clazz.getName());
|
||||
// 生成所有的构造器
|
||||
Constructor[] declaredConstructors = clazz.getDeclaredConstructors();
|
||||
// 找到无参构造器然后实例化
|
||||
Constructor declaredConstructor = clazz.getDeclaredConstructor();
|
||||
declaredConstructor.setAccessible(true);
|
||||
Object newInstance = declaredConstructor.newInstance();
|
||||
Method[] methods = clazz.getDeclaredMethods();
|
||||
for (Method method : methods) {
|
||||
try {
|
||||
// 实例化成功,那么调用一下
|
||||
method.setAccessible(true);
|
||||
// graalvm必须需要声明方法
|
||||
method.invoke(newInstance);
|
||||
} catch (Throwable e) {
|
||||
}
|
||||
}
|
||||
Field[] fields = clazz.getDeclaredFields();
|
||||
for (Field field : fields) {
|
||||
try {
|
||||
field.setAccessible(true);
|
||||
field.getType();
|
||||
String name = field.getName();
|
||||
field.get(newInstance);
|
||||
|
||||
} catch (Throwable e) {
|
||||
}
|
||||
}
|
||||
System.err.println("反射注入完成:" + clazz.getName());
|
||||
} catch (Throwable e) {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
@@ -5,7 +5,6 @@ import org.springframework.cloud.context.config.annotation.RefreshScope;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@RefreshScope
|
||||
public class DailyLoveConfigure {
|
||||
// public static String Access_URL = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}";
|
||||
// public static String Send_URL = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token={0}";
|
||||
|
||||
@@ -8,9 +8,13 @@ import org.springframework.stereotype.Component;
|
||||
@Component
|
||||
public class PushTask {
|
||||
|
||||
@Autowired
|
||||
final
|
||||
PushDailyController pushDailyController;
|
||||
|
||||
public PushTask(PushDailyController pushDailyController) {
|
||||
this.pushDailyController = pushDailyController;
|
||||
}
|
||||
|
||||
//每日 早上7.30,晚上22点 定时推送
|
||||
@Scheduled(cron = "0 30 7 * * ?")
|
||||
public void scheduledPushMorning(){
|
||||
|
||||
@@ -9,10 +9,11 @@ import com.bamanker.dailylove.service.DataRemoteClient;
|
||||
import com.bamanker.dailylove.service.WechatRequestClient;
|
||||
import com.bamanker.dailylove.utils.DataUtils;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import jakarta.annotation.Resource;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
|
||||
@@ -20,12 +21,17 @@ import java.util.Date;
|
||||
@RestController
|
||||
public class PushDailyController {
|
||||
|
||||
@Resource
|
||||
final
|
||||
DataRemoteClient dataRemoteClient;
|
||||
|
||||
@Resource
|
||||
final
|
||||
WechatRequestClient wechatRequestClient;
|
||||
|
||||
public PushDailyController(DataRemoteClient dataRemoteClient, WechatRequestClient wechatRequestClient) {
|
||||
this.dataRemoteClient = dataRemoteClient;
|
||||
this.wechatRequestClient = wechatRequestClient;
|
||||
}
|
||||
|
||||
/**
|
||||
* 推送晚安
|
||||
*
|
||||
|
||||
@@ -4,12 +4,15 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author bamanker
|
||||
*/
|
||||
@Slf4j
|
||||
@RestController
|
||||
public class TestController {
|
||||
|
||||
@GetMapping("/test")
|
||||
public String test(){
|
||||
return "test ok!!!!!!";
|
||||
return "test ok!!!!!!!!";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,9 @@ server:
|
||||
spring:
|
||||
application:
|
||||
name: dailyLove
|
||||
cloud:
|
||||
refresh:
|
||||
enabled: false
|
||||
|
||||
DL:
|
||||
tianxin-key: 72fbbb9e75e338ea6a240e83972f287c
|
||||
@@ -49,4 +52,6 @@ tianxin:
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.bamanker.dailylove.service: debug #指定openfeign日志以什么级别监控哪个接口(可多个)
|
||||
com.bamanker.dailylove.service: debug #指定openfeign日志以什么级别监控哪个接口(可多个)
|
||||
|
||||
scanclass: false
|
||||
@@ -13,7 +13,7 @@ import org.bouncycastle.util.Strings;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import jakarta.annotation.Resource;
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Calendar;
|
||||
@@ -25,128 +25,128 @@ import static com.bamanker.dailylove.utils.DataUtils.getBirthdays;
|
||||
@Slf4j
|
||||
class DailyLoveApplicationTests {
|
||||
|
||||
@Resource
|
||||
DataRemoteClient dataRemoteClient;
|
||||
|
||||
String remark = "❤";
|
||||
|
||||
@Test
|
||||
void test4(){
|
||||
log.info("mark: {}",205%100);
|
||||
|
||||
}
|
||||
@Test
|
||||
void test3() {
|
||||
|
||||
|
||||
//获取输入的生日
|
||||
String boyBirthday = DailyLoveConfigure.Boy_Birthday;
|
||||
//获取农历生日
|
||||
ChineseDate chineseBir = new ChineseDate(DateUtil.parseDate(DailyLoveConfigure.Boy_Birthday));
|
||||
log.info("生日的农历日期是:{}", chineseBir);
|
||||
//截取日、月
|
||||
String[] strings = Strings.split(boyBirthday, '-');
|
||||
int chineseMonth = chineseBir.getMonth();
|
||||
int chineseDay = chineseBir.getDay();
|
||||
//获取当前日期的年
|
||||
Calendar dateToday = Calendar.getInstance();
|
||||
int todayYear = dateToday.get(Calendar.YEAR);
|
||||
//把生日的年改为今年,方便计算
|
||||
ChineseDate chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay,false);
|
||||
//农历日期对应的阳历日期
|
||||
int gregorianDay = chineseDate.getGregorianDay();
|
||||
//计算时间差
|
||||
long days = haveThisDay(chineseMonth, chineseDay, dateToday, todayYear, chineseDate, gregorianDay);
|
||||
log.info("days:{}", days);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 需要递归计算日期差
|
||||
*
|
||||
* @param chineseMonth 农历月
|
||||
* @param chineseDay 农历日
|
||||
* @param dateToday 今天的日期类
|
||||
* @param todayYear 当前的年
|
||||
* @param chineseDate 组装的待计算的新日期
|
||||
* @param gregorianDay 判断是否存在农历日期的参数,-1代表今年不存在这个农历日期
|
||||
* @return 计算好的天数
|
||||
*/
|
||||
private static long haveThisDay(int chineseMonth, int chineseDay, Calendar dateToday, int todayYear, ChineseDate chineseDate, int gregorianDay) {
|
||||
//判断当前年份是否存在农历日对应的阳历日
|
||||
while (gregorianDay == -1) {
|
||||
//不存在,计算明年
|
||||
todayYear += 1;
|
||||
chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay, false);
|
||||
gregorianDay = chineseDate.getGregorianDay();
|
||||
}
|
||||
//存在
|
||||
//将农历日期改为阳历日期
|
||||
Calendar gregorianbir = chineseDate.getGregorianCalendar();
|
||||
//判断这个日期是否和今年是同一年
|
||||
if (todayYear == dateToday.get(Calendar.YEAR)) {
|
||||
//是同一年,判断这一天过了没
|
||||
if (gregorianbir.get(Calendar.DAY_OF_YEAR) < dateToday.get(Calendar.DAY_OF_YEAR)) {
|
||||
//这一天过了,计算明年
|
||||
todayYear += 1;
|
||||
chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay, false);
|
||||
gregorianDay = chineseDate.getGregorianDay();
|
||||
//递归计算下一年是否存在对应的阳历日
|
||||
return haveThisDay(chineseMonth, chineseDay, dateToday, todayYear, chineseDate, gregorianDay);
|
||||
}
|
||||
//没有过,直接计算
|
||||
}
|
||||
//不是同一年,直接计算
|
||||
Date time = dateToday.getTime();
|
||||
log.info("当前的日期是:{}", time);
|
||||
Date time1 = gregorianbir.getTime();
|
||||
log.info("下一个生日的日期:{}", time1);
|
||||
return DateUtil.between(dateToday.getTime(), gregorianbir.getTime(), DateUnit.DAY);
|
||||
}
|
||||
|
||||
@Test
|
||||
void test2() {
|
||||
|
||||
TianXinReqParam param1 = new TianXinReqParam();
|
||||
param1.setKey(DailyLoveConfigure.TianXin_Key);
|
||||
param1.setCity(DailyLoveConfigure.City_ID);
|
||||
param1.setType("7");
|
||||
String weatherJson = dataRemoteClient.getWeather(param1);
|
||||
log.info("weather:{}", weatherJson);
|
||||
JSONObject resWeather = JSONObject.parseObject(weatherJson);
|
||||
JSONObject result = resWeather.getJSONArray("result").getJSONObject(0).getJSONArray("list").getJSONObject(2);
|
||||
log.info("----result----:{}", result);
|
||||
Weather weather = result.toJavaObject(Weather.class);
|
||||
log.info("weather:{}", weather);
|
||||
ChineseDate chineseDate = new ChineseDate(DateUtil.parseDate(weather.getDate()));
|
||||
System.out.println("--------------55555----------"+weather.getDate());
|
||||
System.out.println("------------------------"+chineseDate);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
void test1() {
|
||||
int loveDays = getBirthdays("2023-05-14");
|
||||
log.info("-------------------------------{}", loveDays);
|
||||
}
|
||||
|
||||
public static int getLoveDays(String loveday) {
|
||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
||||
int days = 0;
|
||||
try {
|
||||
long time = System.currentTimeMillis() - dateFormat.parse(loveday).getTime();
|
||||
days = (int) (time / (24 * 60 * 60 * 1000));
|
||||
|
||||
} catch (ParseException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return days;
|
||||
}
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
// @Resource
|
||||
// DataRemoteClient dataRemoteClient;
|
||||
//
|
||||
// String remark = "❤";
|
||||
//
|
||||
// @Test
|
||||
// void test4(){
|
||||
// log.info("mark: {}",205%100);
|
||||
//
|
||||
// }
|
||||
// @Test
|
||||
// void test3() {
|
||||
//
|
||||
//
|
||||
// //获取输入的生日
|
||||
// String boyBirthday = DailyLoveConfigure.Boy_Birthday;
|
||||
// //获取农历生日
|
||||
// ChineseDate chineseBir = new ChineseDate(DateUtil.parseDate(DailyLoveConfigure.Boy_Birthday));
|
||||
// log.info("生日的农历日期是:{}", chineseBir);
|
||||
// //截取日、月
|
||||
// String[] strings = Strings.split(boyBirthday, '-');
|
||||
// int chineseMonth = chineseBir.getMonth();
|
||||
// int chineseDay = chineseBir.getDay();
|
||||
// //获取当前日期的年
|
||||
// Calendar dateToday = Calendar.getInstance();
|
||||
// int todayYear = dateToday.get(Calendar.YEAR);
|
||||
// //把生日的年改为今年,方便计算
|
||||
// ChineseDate chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay,false);
|
||||
// //农历日期对应的阳历日期
|
||||
// int gregorianDay = chineseDate.getGregorianDay();
|
||||
// //计算时间差
|
||||
// long days = haveThisDay(chineseMonth, chineseDay, dateToday, todayYear, chineseDate, gregorianDay);
|
||||
// log.info("days:{}", days);
|
||||
//
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 需要递归计算日期差
|
||||
// *
|
||||
// * @param chineseMonth 农历月
|
||||
// * @param chineseDay 农历日
|
||||
// * @param dateToday 今天的日期类
|
||||
// * @param todayYear 当前的年
|
||||
// * @param chineseDate 组装的待计算的新日期
|
||||
// * @param gregorianDay 判断是否存在农历日期的参数,-1代表今年不存在这个农历日期
|
||||
// * @return 计算好的天数
|
||||
// */
|
||||
// private static long haveThisDay(int chineseMonth, int chineseDay, Calendar dateToday, int todayYear, ChineseDate chineseDate, int gregorianDay) {
|
||||
// //判断当前年份是否存在农历日对应的阳历日
|
||||
// while (gregorianDay == -1) {
|
||||
// //不存在,计算明年
|
||||
// todayYear += 1;
|
||||
// chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay, false);
|
||||
// gregorianDay = chineseDate.getGregorianDay();
|
||||
// }
|
||||
// //存在
|
||||
// //将农历日期改为阳历日期
|
||||
// Calendar gregorianbir = chineseDate.getGregorianCalendar();
|
||||
// //判断这个日期是否和今年是同一年
|
||||
// if (todayYear == dateToday.get(Calendar.YEAR)) {
|
||||
// //是同一年,判断这一天过了没
|
||||
// if (gregorianbir.get(Calendar.DAY_OF_YEAR) < dateToday.get(Calendar.DAY_OF_YEAR)) {
|
||||
// //这一天过了,计算明年
|
||||
// todayYear += 1;
|
||||
// chineseDate = new ChineseDate(todayYear, chineseMonth, chineseDay, false);
|
||||
// gregorianDay = chineseDate.getGregorianDay();
|
||||
// //递归计算下一年是否存在对应的阳历日
|
||||
// return haveThisDay(chineseMonth, chineseDay, dateToday, todayYear, chineseDate, gregorianDay);
|
||||
// }
|
||||
// //没有过,直接计算
|
||||
// }
|
||||
// //不是同一年,直接计算
|
||||
// Date time = dateToday.getTime();
|
||||
// log.info("当前的日期是:{}", time);
|
||||
// Date time1 = gregorianbir.getTime();
|
||||
// log.info("下一个生日的日期:{}", time1);
|
||||
// return DateUtil.between(dateToday.getTime(), gregorianbir.getTime(), DateUnit.DAY);
|
||||
// }
|
||||
//
|
||||
// @Test
|
||||
// void test2() {
|
||||
//
|
||||
// TianXinReqParam param1 = new TianXinReqParam();
|
||||
// param1.setKey(DailyLoveConfigure.TianXin_Key);
|
||||
// param1.setCity(DailyLoveConfigure.City_ID);
|
||||
// param1.setType("7");
|
||||
// String weatherJson = dataRemoteClient.getWeather(param1);
|
||||
// log.info("weather:{}", weatherJson);
|
||||
// JSONObject resWeather = JSONObject.parseObject(weatherJson);
|
||||
// JSONObject result = resWeather.getJSONArray("result").getJSONObject(0).getJSONArray("list").getJSONObject(2);
|
||||
// log.info("----result----:{}", result);
|
||||
// Weather weather = result.toJavaObject(Weather.class);
|
||||
// log.info("weather:{}", weather);
|
||||
// ChineseDate chineseDate = new ChineseDate(DateUtil.parseDate(weather.getDate()));
|
||||
// System.out.println("--------------55555----------"+weather.getDate());
|
||||
// System.out.println("------------------------"+chineseDate);
|
||||
//
|
||||
//
|
||||
// }
|
||||
//
|
||||
//
|
||||
// @Test
|
||||
// void test1() {
|
||||
// int loveDays = getBirthdays("2023-05-14");
|
||||
// log.info("-------------------------------{}", loveDays);
|
||||
// }
|
||||
//
|
||||
// public static int getLoveDays(String loveday) {
|
||||
// SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
||||
// int days = 0;
|
||||
// try {
|
||||
// long time = System.currentTimeMillis() - dateFormat.parse(loveday).getTime();
|
||||
// days = (int) (time / (24 * 60 * 60 * 1000));
|
||||
//
|
||||
// } catch (ParseException e) {
|
||||
// e.printStackTrace();
|
||||
// }
|
||||
// return days;
|
||||
// }
|
||||
//
|
||||
// @Test
|
||||
// void contextLoads() {
|
||||
// TianXinReqParam param1 = new TianXinReqParam();
|
||||
// param1.setKey(DailyLoveConfigure.TianXin_Key);
|
||||
// param1.setCity(DailyLoveConfigure.City_ID);
|
||||
@@ -203,6 +203,6 @@ class DailyLoveApplicationTests {
|
||||
// log.info("resultVo:{}", resultVo);
|
||||
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
2
start.sh
2
start.sh
@@ -1,2 +0,0 @@
|
||||
nohup java -Xms32M -Xmx32M -jar /home/dailyLove/dailyLove-0.1.6.jar >> /home/dailyLove/log/runout.log 2>&1 &
|
||||
tail -f /home/dailyLove/log/runout.log
|
||||
BIN
target/dailylove
Executable file
BIN
target/dailylove
Executable file
Binary file not shown.
Reference in New Issue
Block a user