摘要:
以微信支付依赖为例子 wxpay-sdk-3.0.9.jar1.阿里云仓库搜索地址https://maven.aliyun.com/mvn/search 2.搜索你要找的依赖,对号入座 3.确保maven地址配置正确(这是官网推荐的 2020年2月9日21:04:10) <mirror> <id>a 阅读全文
摘要:
环境:win10 百度网盘下载 版本: cas-overlay-template-5.3 提取码 d1b6 添加阿里的到pom.xml 注意添加到第一列 <!--阿里云仓库--> <repository> <id>aliyunmaven</id> <url>http://maven.aliyun.c 阅读全文
摘要:
1.新建一个工程 2.把依赖添加到新建工程的pom文件 神奇的事情发生了,依赖自动补全!!! 3.点击install 安装一下可能有些依赖会有其他依赖 建议:不要在自己原来的工程上浪费时间,新建工程. 如果不想手动导入依赖,也可以新建工程试试. 例如:aliyun-java-sdk-core-4.0 阅读全文
摘要:
环境 win10 idea工具 1.确认已经安装好 mvn环境 MAVEN_HOME D:\Tool\apache-maven-3.5.2 Path %MAVEN_HOME%\bin 2.cmd 进入到jar目录下 <dependency> <groupId>包名</groupId> <artifa 阅读全文
摘要:
工具:kibana GET _search { "query": { "match_all": {} } } #创建索引结构 PUT sku { "mappings":{ "doc":{ "properties":{ "name":{ "type":"text", "analyzer":"ik_sm 阅读全文
摘要:
环境:dubbo 下的ssm框架 1.AOP切面代码(web层) @Aspect @Component public class LogAopController { @Autowired private HttpServletRequest request; //需要在web.xml配置 @Ref 阅读全文
摘要:
java.lang.NullPointerException............... 环境:SSM(通用mapper)+Dubbo 1.检查导包 提示注解@Reference 应该导入 import com.alibaba.dubbo.config.annotation.Reference; 阅读全文
摘要:
环境:win 10 1.解压 新建my.ini [mysqld] port = 3306 basedir=解压路径 datadir=解压路径\data max_connections=200 character-set-server=utf8 default-storage-engine=INNOD 阅读全文
摘要:
来给生活比个耶! 1.按钮 <el-button @click="albumList(scope.row.id)" size="mini" type="primary" size="small">相册列表</el-button> 2.js函数 albumList (id){ location.hre 阅读全文
摘要:
通用 MAPPER的简单使用 官方 https://mapperhelper.github.io/docs/2.use/ 依赖 <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <!-- 建议使用最新 阅读全文