
小功能
AlcedoAtthis
乐逍遥!!!编码使我体验到乐趣!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
验证码生成
@RequestMapping(“/identifyCode”) public void identifyCode(HttpServletResponse response,HttpSession httpSession){ BufferedImage bufferedImage = new BufferedImage(150,40,BufferedImage.TYPE...原创 2018-08-15 10:01:56 · 241 阅读 · 0 评论 -
js对字符串的判断测试
js判断字符串。var str = null;var test = !str; //truevar str = " ";var test = !str; //truevar str = “you”;var test = !str; //false原创 2019-07-29 13:59:58 · 285 阅读 · 0 评论 -
前端很好的一个网站,快去学习吧!!!
https://www.html5tricks.com/[前段高手](https://www.html5tricks.com/)转载 2019-07-12 14:16:41 · 207 阅读 · 0 评论 -
ajax 返回日期转换为2019/11/1格式
new Date(submitTime).toLocaleDateString();原创 2019-07-11 22:54:01 · 372 阅读 · 0 评论 -
mysql时间格式化
DATE_FORMAT(CREATE_DATE,'%Y-%m-%d %H:%i:%S') AS CREATE_TIME,原创 2019-07-16 09:51:00 · 440 阅读 · 0 评论 -
maven 不能加载jar包的解决办法
1. I had this problem all of a sudden (after an update + Windows Update). I tried a lot of things, and in the end, set Settings > Build, Execution, Deployment > Build Tools > Maven > Impor...转载 2019-07-04 08:30:38 · 1465 阅读 · 0 评论 -
git上传远程仓库
git 在idea上面提交touch README.md 创建readme.md 文件并进行编辑。touch .gitignore 把需要忽略的文件都编辑到此文件中git init 初始化Git repositorygit status 查看git状态git add 添加到本地仓库git commit -am ‘你的上传说明写入此处’ 把项目提交到本地仓库git remote...原创 2019-07-13 07:36:15 · 226 阅读 · 0 评论 -
分页插件mapper到server的转换
//xx表示路径layui.use('table', function () { var versionTable = layui.table; versionTable.render({ elem: '#versionTable' //, toolbar: '#tableTopbar' , cellMinW...原创 2019-07-03 08:35:25 · 241 阅读 · 0 评论 -
mybatis一对多查询
多查询<resultMap id="appVersionContentMap" type="com.XX.AppVersionContentBean"> <result column="version_code" property="versionCode"/> <result column="version_content" pro...原创 2019-07-02 17:57:12 · 136 阅读 · 0 评论 -
springmvc mybatis 配置多数据源的切换注解
@DataSourceChange(“reDB”)原创 2019-04-26 09:50:03 · 450 阅读 · 0 评论 -
layui后端返回到前台数据不能渲染的一个解决方法
原创 2019-07-20 16:26:57 · 1592 阅读 · 0 评论