会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
打代码的小超人
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2020年8月24日
java生成二维码给浏览器下载
摘要: maven 配置 <!--google生成二维码--> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.0<version> </dependency> <depe
阅读全文
posted @ 2020-08-24 09:22 打代码的小超人
阅读(488)
评论(0)
推荐(0)
2020年5月9日
idea tomcat 配置
摘要: 选择这个包修改代码不用重启也可生效,前提是做了如下配置
阅读全文
posted @ 2020-05-09 20:19 打代码的小超人
阅读(257)
评论(0)
推荐(0)
2020年4月29日
Lamda 表达式
摘要: 从List<User> 中获取 age最大的对象 Optional<User> optional= list.stream().max(Comparator.comparing(User ::getAge)); User maxEndCount = optional.get();
阅读全文
posted @ 2020-04-29 15:47 打代码的小超人
阅读(313)
评论(0)
推荐(0)
2020年3月31日
nginx 搭建简单tomcat 集群
摘要: 在服务器上准备两个tomcat 端口分别改为8801、8802,准备两个war 包,index.js 分别显示 tomcat-8801,tomcat-8802 放入对应的tomcat 中,并启动它们 nginx 安装可参照 :https://chuna2.787528.xyz/xxoome/p/5866
阅读全文
posted @ 2020-03-31 10:13 打代码的小超人
阅读(137)
评论(0)
推荐(0)
2020年3月29日
eclipse 安装gradle(sts)
摘要:
阅读全文
posted @ 2020-03-29 10:20 打代码的小超人
阅读(618)
评论(0)
推荐(0)
2020年3月20日
linux 32 位mysql 安装中的问题 以及修改数据库密码
摘要: mysql -u root -p 执行该命令时 报错 -bash: mysql: command not found 解决方法 执行 alias mysql=/usr/local/mysql/bin/mysql 问题解决 mysql -u root -p 执行该命令时 报错 Can't connec
阅读全文
posted @ 2020-03-20 16:50 打代码的小超人
阅读(158)
评论(0)
推荐(0)
2020年3月18日
給下拉选项动态设置选中值
摘要: $("#unit option").each(function () { var val = $(this).val(); var text = $(this).text(); if(val=="${model.unit}"){ $(this).attr("selected",true); }
阅读全文
posted @ 2020-03-18 15:22 打代码的小超人
阅读(187)
评论(0)
推荐(0)
2020年3月9日
linux tomcat 开机自启 配置
摘要: 在/etc/init.d路径下新建一个文件(这里以tomcat为例) vi /etc/init.d/tomcat 按i进入脚本编辑,开始写tomcat开机自动启动脚本; #!/bin/sh # chkconfig: 2345 80 90 # description: Auto-starts tomc
阅读全文
posted @ 2020-03-09 19:22 打代码的小超人
阅读(301)
评论(0)
推荐(0)
2020年3月6日
linux redis 开机自启配置
摘要: linux 下配置 redis开机自动启动 步骤: 1、设置redis.conf中daemonize为yes,确保守护进程开启。 2、编写开机自启动脚本 vi /etc/init.d/redis看清楚目录,是在 etc/init.d下新建redis文件 ,为什么,因为 linux开机会 执行这个目录
阅读全文
posted @ 2020-03-06 16:28 打代码的小超人
阅读(381)
评论(0)
推荐(0)
安装完redis 后 java 远程连不上
摘要: 使用密码连接以下参数 得改为falseq
阅读全文
posted @ 2020-03-06 13:46 打代码的小超人
阅读(249)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告