摘要: CONN system/你设置的密码@你的数据库名字show parameter name 查看你登入的数据库是否是你要导入的数据库 先创建oracle用户(数据库)create user orcladmin identified by manager;--创建用户grant dba to orcl 阅读全文
posted @ 2024-03-21 15:42 _情书 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1 npm init vite //初始化vite 创建vue3项目 (自定义项目名称,选择开发语言javaScript)2 npm i vue-router@4 -S //vue3 初始化没有自动安装路由,需要手动安装router @4/指版本大于4 -S/指代生产环境(大写) -D/开发环境3 阅读全文
posted @ 2024-03-15 14:07 _情书 阅读(16) 评论(0) 推荐(0) 编辑
摘要: <Context path="" docBase="/root/tomcat8.5.55/webapps/review-web" debug="0" reloadable="true"/> 阅读全文
posted @ 2022-06-13 18:08 _情书 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1.查看是否已经安装 Mysql rpm -qa | grep mysql 如果你查看出来有东西,可以使用下面命令将其删除(xxx 为文件全名) rpm -e xxx 2.上传解压(解压后可删除安装包,节省空间) tar -zxvf mysql-5.7.35-linux-glibc2.12-x86_ 阅读全文
posted @ 2022-05-26 18:40 _情书 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1. 通过maven导入jar包 <!-- 引入swagger相关的jar --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</ver 阅读全文
posted @ 2022-04-14 14:09 _情书 阅读(125) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import java.util.Map; public static void main(String[] args){ String str = " 阅读全文
posted @ 2022-03-23 14:51 _情书 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="10 seconds"> <!--继承spring boot提供的logback配置--> <!--<include resource="org 阅读全文
posted @ 2021-12-15 14:58 _情书 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 以上如图为项目文件夹目录。 1,首先配置application.yml 配置文件 server: port: 8084 tomcat: uri-encoding: utf-8 servlet: context-path: /services #spring: # datasource: # type 阅读全文
posted @ 2021-12-15 14:37 _情书 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: 以上为封装用到的文件: 1:.vue 页面 请求接口: import { getAll } from "@/api/httpPost" //需要引入接口统一配置文件 export default { data() { return { datainfo:{ key:value } } } mount 阅读全文
posted @ 2021-12-02 14:53 _情书 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 首先引入 maven 插件: <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>4.1.4</version> </dependency> params 阅读全文
posted @ 2021-09-17 16:56 _情书 阅读(107) 评论(0) 推荐(0) 编辑