摘要:
一: 首次搭建:https://blog.csdn.net/u013187139/article/details/68944972 整合mybatis: https://www.jianshu.com/p/a811a89d1b28 log4j日志配置:https://www.jb51.net/art 阅读全文
摘要:
一、分模块项目打包失败 情况:项目是分模块创建的,一些公共的方法是单独的一个模块common,其他模块依赖于此模块,poom依赖已经添加了,项目可以正常运行,但使用maven打包时出现了问题:找不到依赖的jar包; 解决历程 1. 首先对项目common依次进行clean、install。(注意:p 阅读全文
摘要:
1. 获取整个url: console.log(window.location.href) http://localhost:8082/Index.html?name=tom 2. 获取域名加端口号: console.log(window.location.host); localhost:8082 阅读全文