上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页
摘要: npm下载 1 npm i wangeditor -S 在要使用的页面导入 1 import EWangEditor from "wangeditor"; 2 import {onMounted, reactive} from "vue"; 定义 复制下面的代码,放到上面截图的位置即可 1 setu 阅读全文
posted @ 2022-08-26 21:45 勤快的懒羊羊 阅读(1573) 评论(0) 推荐(1) 编辑
摘要: 1 /*内容*/ 2 .content{ 3 width:100%; 4 height:70px; 5 font-size: small; 6 margin-top: 10px; 7 8 text-overflow: -o-ellipsis-lastline; 9 overflow: hidden; 阅读全文
posted @ 2022-08-21 13:28 勤快的懒羊羊 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1 <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> 2 <dependency> 3 <groupId>com.alibaba</groupId> 4 <artifactId>fastjson</artifactId> 阅读全文
posted @ 2022-08-21 12:25 勤快的懒羊羊 阅读(2688) 评论(0) 推荐(0) 编辑
摘要: 1、为什么要使用搜索框架? 2、Lucene的介绍 3、Lucene和ES的区别? 4、ES的安装 为什么要使用ES或者Lucene? 之前我们接触的都是模糊查询,,但模糊查询不够准确,有很大的局限性! 比如:我爱Java 在模糊查询中:%我爱Java% 但正常情况下我们网页上的搜索:我爱..... 阅读全文
posted @ 2022-08-16 22:04 勤快的懒羊羊 阅读(1386) 评论(0) 推荐(0) 编辑
摘要: mybatis+Mysql依赖 1 <!-- Mybatis 依赖--> 2 <dependency> 3 <groupId>org.mybatis.spring.boot</groupId> 4 <artifactId>mybatis-spring-boot-starter</artifactId 阅读全文
posted @ 2022-08-11 21:15 勤快的懒羊羊 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 依赖 1 <!-- webservice 依赖包 这个包很重要,如果缺失的话会出现各种奇怪的异常,不是未找到类哦! --> 2 <dependency> 3 <groupId>org.apache.cxf</groupId> 4 <artifactId>cxf-rt-frontend-jaxws</ 阅读全文
posted @ 2022-08-10 22:26 勤快的懒羊羊 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.首先安装第三方源(以下源比默认源包含更多安装包,建议添加该源使用) # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm //(可能需要使用root账户,切换root执行即可) 2 阅读全文
posted @ 2022-06-28 22:37 勤快的懒羊羊 阅读(493) 评论(0) 推荐(0) 编辑
摘要: CentOS下创建管理员权限用户 用CentOS时,root是超级管理员,不能给其他人用。下面介绍创建用户并赋予管理员权限的方法步骤: 1、新建用户,这里新建一个admin的用户 adduser admin 2、设置新用户密码 passwd admin (回车后输入密码,然后回车后再确认密码) 提示 阅读全文
posted @ 2022-06-28 22:35 勤快的懒羊羊 阅读(3458) 评论(0) 推荐(0) 编辑
摘要: 数据库表设计 1 --员工表 2 create table Employee 3 ( 4 id NUMBER primary key, 5 employeeID NUMBER not null, 6 employeeName VARCHAR2(100) not null, 7 employeeSex 阅读全文
posted @ 2022-06-14 00:47 勤快的懒羊羊 阅读(426) 评论(2) 推荐(1) 编辑
摘要: 安装cnpmnpm install cnpm -g --registry=https://registry.npm.taobao.org,执行命令报下面错误 执行:strings /usr/lib64/libstdc++.so.6 | grep GLIBC 发现没有GLIBCXX_3.4.14 发现 阅读全文
posted @ 2022-05-27 00:24 勤快的懒羊羊 阅读(239) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页