上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 环境:win10 百度网盘下载 版本: cas-overlay-template-5.3 提取码 d1b6 添加阿里的到pom.xml 注意添加到第一列 <!--阿里云仓库--> <repository> <id>aliyunmaven</id> <url>http://maven.aliyun.c 阅读全文
posted @ 2020-01-29 15:37 三只坚果 阅读(712) 评论(0) 推荐(0) 编辑
摘要: 1.新建一个工程 2.把依赖添加到新建工程的pom文件 神奇的事情发生了,依赖自动补全!!! 3.点击install 安装一下可能有些依赖会有其他依赖 建议:不要在自己原来的工程上浪费时间,新建工程. 如果不想手动导入依赖,也可以新建工程试试. 例如:aliyun-java-sdk-core-4.0 阅读全文
posted @ 2020-01-27 23:02 三只坚果 阅读(2986) 评论(0) 推荐(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 阅读全文
posted @ 2020-01-26 23:17 三只坚果 阅读(828) 评论(0) 推荐(0) 编辑
摘要: 工具:kibana GET _search { "query": { "match_all": {} } } #创建索引结构 PUT sku { "mappings":{ "doc":{ "properties":{ "name":{ "type":"text", "analyzer":"ik_sm 阅读全文
posted @ 2020-01-10 22:20 三只坚果 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 环境:dubbo 下的ssm框架 1.AOP切面代码(web层) @Aspect @Component public class LogAopController { @Autowired private HttpServletRequest request; //需要在web.xml配置 @Ref 阅读全文
posted @ 2019-12-28 15:55 三只坚果 阅读(1999) 评论(0) 推荐(0) 编辑
摘要: java.lang.NullPointerException............... 环境:SSM(通用mapper)+Dubbo 1.检查导包 提示注解@Reference 应该导入 import com.alibaba.dubbo.config.annotation.Reference; 阅读全文
posted @ 2019-12-28 14:37 三只坚果 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 环境:win 10 1.解压 新建my.ini [mysqld] port = 3306 basedir=解压路径 datadir=解压路径\data max_connections=200 character-set-server=utf8 default-storage-engine=INNOD 阅读全文
posted @ 2019-12-23 16:42 三只坚果 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 来给生活比个耶! 1.按钮 <el-button @click="albumList(scope.row.id)" size="mini" type="primary" size="small">相册列表</el-button> 2.js函数 albumList (id){ location.hre 阅读全文
posted @ 2019-12-22 23:16 三只坚果 阅读(1537) 评论(0) 推荐(0) 编辑
摘要: 通用 MAPPER的简单使用 官方 https://mapperhelper.github.io/docs/2.use/ 依赖 <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <!-- 建议使用最新 阅读全文
posted @ 2019-12-16 21:33 三只坚果 阅读(3397) 评论(0) 推荐(0) 编辑
摘要: 三级分类的数据库设计例如 类型0包括>类型1 类型1包括>类型2 类型0-->类型1-->类型2类型0的数据库字段 id=1 parentId=0类型1的数据库字段 id=2 parentId=1类型3的数据库字段 id=3 parentId=2例如 因为类型0的id=1所以查询下一级的分类就可以根 阅读全文
posted @ 2019-12-15 22:13 三只坚果 阅读(4931) 评论(0) 推荐(1) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页