首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,036 阅读
2
白嫖Emby
5,772 阅读
3
Emby客户端IOS破解
5,771 阅读
4
《吞食天地1》金手指代码
4,697 阅读
5
破解emby-server
4,041 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
370
篇文章
累计收到
459
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
68
篇与
develop
的结果
2021-08-31
CentOS安装NodeJS
1.从官网下载最新nodejs安装包https://nodejs.org/zh-cn/download/ 历史版本可从https://nodejs.org/dist/下载2.通过ftp工具上传到linux服务,解压安装包或者在指定目录下执行命令下载:wget https://nodejs.org/dist/v14.17.5/node-v14.17.5-linux-x64.tar.xz解压:tar -xvf node-v14.17.5-linux-x64.tar.xz3、移动并改名文件夹(不改名也行)cd /usr/local/ mv /var/ftp/pub/node-v14.17.5-linux-64 . //后面的.表示移动到当前目录 mv node-v14.17.5-linux-x64 nodejs4、让npm和node命令全局生效方式一:环境变量方式(这种方式似乎只对登录用户有效?)1)、加入环境变量,在 /etc/profile 文件末尾增加配置vi /etc/profile export PATH=$PATH:/usr/local/nodejs/bin2)、执行命令使配置文件生效source /etc/profile方式二:软链接方式(推荐)ln -s /usr/local/nodejs/bin/npm /usr/local/bin/ ln -s /usr/local/nodejs/bin/node /usr/local/bin/5、查看nodejs是否安装成功node -v npm -v
2021年08月31日
110 阅读
0 评论
0 点赞
2021-08-27
SpringBoot读取配置文件,赋值给静态变量
SpringBoot读取配置文件,赋值给静态变量方法一:xml通过bean注入{lamp/}方法二:使用set方法注入1、配置文件2、赋值静态变量—注意set函数的写法@Component @PropertySource({"classpath:port.properties"}) public class IpPortConfig { public static String ip; public static int port; public static int reStart; @Value("${demo.ip}") public void setIp(String ip) { this.ip = ip; } @Value("${demo.port}") public void setPort(int port) { this.port = port; } @Value("${demo.reStart}") public void setReStart(int reStart) { this.reStart = reStart; } }3.属性名和set方法名不必一致方法三:通过中间变量赋值import javax.annotation.PostConstruct; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class Test { public static String url = "/dev/xx"; @Value("${url}") public String tempUrl = "/dev/xx"; @PostConstruct public void init() { url = tempUrl; } }{card-describe title="1.@PostConstruct说明"}被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。{/card-describe}{card-describe title="2.@PreConstruct说明"}被@PreConstruct修饰的方法会在服务器卸载Servlet的时候运行,并且只会被服务器调用一次,类似于Servlet的destroy()方法。被@PreConstruct修饰的方法会在destroy()方法之后运行,在Servlet被彻底卸载之前。(详见下面的程序实践){/card-describe}
2021年08月27日
232 阅读
0 评论
0 点赞
2021-08-27
maven出现:Failed to execute goal on project ...: Could not resolve dependencies for project ...
1、我的项目结构是一个父项目,多个子项目目录如下:2、我这里就举个例子,所以应用的也就是core和domain这两个项目。3、两个项目都继承父项目4、在模块中domain依赖于core,在core中执行完clean和install之后,本地仓库也存在依赖,但是在domain中进行install就会出现Failed to execute goal on project ...: Could not resolve dependencies for project ... 这样的错误,最后发现原来是自己没有首先对父项目也就是interface-test项目进行clean和install ,5、总结、在父项目下有的子项目在首次运行clean 和install前应该先运行父项目的clean和install.直接对父项目打包,即可完成所有子项目打包
2021年08月27日
213 阅读
0 评论
0 点赞
2021-08-26
宝塔一键部署springboot项目时总是无法正常启动的问题
问题:如下图,启动之后,“状态”栏总是呈现红色字体“已关闭”字样(图中为已解决后的状态)。解决:设置文件的用户为www宝塔网站用户和755权限
2021年08月26日
787 阅读
0 评论
1 点赞
2021-08-26
docker部署springboot
https://blog.csdn.net/a656678879/article/details/100105267
2021年08月26日
210 阅读
0 评论
0 点赞
1
...
11
12
13
14
您的IP: