Skip to content

Commit

Permalink
chore:7月10日
Browse files Browse the repository at this point in the history
  • Loading branch information
aehyok committed Jul 10, 2024
1 parent 8f5fee2 commit c1b3116
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
## 个人博客
- https://baoyu.io/
- https://gorden-sun.notion.site/527689cd2b294e60912f040095e803c5?v=4f6cc12006c94f47aee4dc909511aeb5

## 7月8日
- ssl https 自动续期
- https://certbot.eff.org/
## 7月4日
- 高温排行榜
- http://wx.nmc.cn/f/page/eb18ad1b8ee748948f62084d9e40cb58/weatherMonitor/temperatureLiveOrder?
Expand Down
68 changes: 66 additions & 2 deletions docs/javascript/2024-06-28-java.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

## java开发
- 搭建开发环境
https://www.cnblogs.com/nojacky/p/9497724.html
Expand All @@ -8,6 +9,10 @@
- 中文在编辑器中乱码
- https://www.cnblogs.com/mynxg/p/17989273


## 这个开源库真牛逼 好多东西
- https://plus.hutool.cn/pages/ff6cfe/#shearcaptcha-%E6%89%AD%E6%9B%B2%E5%B9%B2%E6%89%B0%E9%AA%8C%E8%AF%81%E7%A0%81

## 通过spring initializr创建项目
- https://start.spring.io/

Expand All @@ -17,6 +22,8 @@
- 配置路径设置
- https://www.cnblogs.com/sincisco/articles/18137198

- swagger
- 其他配置解析 https://juejin.cn/post/7276440197620776999
## automapper
- https://www.baeldung.com/mapstruct

Expand Down Expand Up @@ -46,5 +53,62 @@ https://www.yuque.com/zaibaliweigezidemeixi/dopm5h
- 官网 https://baomidou.com/guides/wrapper/
- https://baomidou.com/introduce/
- https://mybatis.org/mybatis-3/zh_CN/index.htmls
## 疑惑
- Java中的类型 Long和long的区别
## java 版本
- https://blog.csdn.net/u014454538/article/details/130735582
- https://weibo.com/ttarticle/p/show?id=2309405031072714064124#_loginLayer_1720135208334

## java jdk下载地址
- https://adoptium.net/download/
- linux下安装java
- https://blog.csdn.net/qq_36205206/article/details/125855970
```
tar -zxvf OpenJDK17U-jdk_x64_linux_hotspot_17.0.11_9.tar.gz
```

## Mysql数据库连接池
- https://www.cnblogs.com/zhaojinhui/p/17579010.html


## systemd 服务设置
```
// /usr/lib/systemd/system
systemctl enable sun-xxm-java
systemctl start sun-xxm-java
systemctl daemon-reload
//etc/nginx/conf.d
nginx -t
nginx -s reload
```


- sun-xxm java小服务
```
[Unit]
Description=sun-xxm
After=network-online.target
Wants=network-online.target
[Service]
# modify when deploy in prod env
# User=dvs
# Group=dvs
Type=simple
ExecStart=/root/java/jdk-17.0.11+9/bin/java -jar /usr/local/sunlight/sun-xxm-java/xxm-0.0.1.jar
WorkingDirectory=/usr/local/sunlight/sun-xxm-java
Restart=always
RestartSec=1
StartLimitInterval=0
[Install]
WantedBy=multi-user.target
```




## 几篇不错的文章集锦
- https://juejin.cn/post/7027236554426826783?searchId=20240705191710DB925CC1AACAF7120339
6 changes: 6 additions & 0 deletions docs/javascript/2024-07-09-baidumap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 获取geo数据
- https://geojson.cn/
- https://www.poi86.com/poi/download_area_geojson/110108.html

## marker点位
- https://blog.csdn.net/z1093541823/article/details/124098232

0 comments on commit c1b3116

Please sign in to comment.