float 和 double 运算不准确的思考 引用: http://blog.163.com/chenxiangtao@126/blog/static/77707468201121210215193/转载于:https://www.cnblogs.com/lbangel/archive/2013/03/17/2964259.html Other 2023-09-12 44 点赞 0 评论 66 浏览
nginx rewrite重写uri 1、根据ip地址转发并重写urilocation /cms/v35 { if ($remote_addr ~ "210.12.41.66") { rewrite ^/cms/v35/(.*) /cms/$1 break; proxy_pass http://127.0.0.1:8080; break; } proxy_pass http://127.0.0.1:8080;} nginx 2023-09-09 36 点赞 0 评论 54 浏览
mysql及mybatis知识点_初识Mybatis--总结Mybatis的基础知识点 如果使用maven管理项目:需要添加的依赖mybatislog4j(日志)log4j-coremysql-connector-java(可以到maven官网进行下载依赖)mybatis核心配置文件(mybatis-config.xml):/p>PUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-... mysql及mybatis知识点 2023-09-07 46 点赞 0 评论 69 浏览
使用js技术在jsp页面实现水印(时间和当前登录用户名)功能 出于安全的考虑,项目需要,需要在jsp的页面显示水印的功能,防止用户信息泄露。在js里获取系统当前时间:function init(){ var date=new Date(); //年 var year=date.getFullYear(); //月 var month=date.getMonth()+1; //日 var day=d... Java 2023-09-02 52 点赞 0 评论 78 浏览