- 博客(15)
- 资源 (8)
- 收藏
- 关注
原创 uniapp常用功能代码
修改导航栏字体onNavigationBarButtonTap(e) { if (e.index == 0) { //编辑 /* uni.setNavigationBarTitle({ title:"cehi" //这是修改后的导航栏文字 }) */ const currentWebview = this.$mp.page.$getAppWebview(); currentWebview.setTitleNViewButtonStyle(e.index, {
2020-12-10 23:45:52 2358
原创 【关于log4j严重漏洞好像并没有那么严重】
作者通过注入发现只有用到log4j的地方能够被注入,然而springboot自带log4j,解决方案就是版本改为2.15.0后能解决这个问题!(后面附代码)但有趣的事情发生了!貌似项目结合mybatis即使输入注入代码也无法被执行!并且网上讨论一大堆的大部分都是本机执行,这里作者本机执行并注入成功了!没有毛病!但添加到远程-或者不同主机之间,这种被注入的现象就消失了!然后作者通过各种手段得出结论就是-非本机并且用到mybatis的项目无法被注入,即使获取到了对象也是一段字符串!大家可以下去试试!如有在此
2021-12-17 02:55:32 3169
原创 Mysql常用设置
打开mysql命令行mysql> use mysql;查询hostmysql> select user,host from user;如果没有"%"这个host值,就执行下面这两句:mysql> update user set host='%' where user='root';mysql> flush privileges;//刷新授权任意主机访问mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENT
2021-04-08 01:26:15 124
原创 阿里云创建服务器常用问题
未找到匹配的参数: mysql-community-server错误:没有任何匹配: mysql-community-server尝试运行:yum module disable mysql
2020-12-17 23:15:07 327
原创 阿里云短信服务发送
pom.xml导入依赖 <dependency> <groupId>com.aliyun</groupId> <artifactId>aliyun-java-sdk-core</artifactId> <version>4.5.3</version> </dependency>Controller文件内测试@GetMapping("
2020-12-09 22:18:51 191
原创 SpringBoot使用Redis简单案例
链接Redis服务器并获取字段值pom.xml引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>创建名为main的controller文件package com.exa
2020-12-09 17:20:19 326
原创 使用Elementui创建项目
npm安装npm i element-ui -S在 main.js 中写入以下内容:import Vue from ‘vue’;import ElementUI from ‘element-ui’;import ‘element-ui/lib/theme-chalk/index.css’;import App from ‘./App.vue’;Vue.use(ElementUI);new Vue({el: ‘#app’,render: h => h(App)});...
2020-12-08 12:30:18 320
原创 VScode创建vue项目
安装node.js后在cmd或者vscode打开终端安装脚手架: npm install -g vue-cli安装 webpack(打包js的工具): npm install -g webpack以上操作 是 只需要配置一次安装一次即可创建项目vue init webpack myvue安装cnpmnpm install -g cnpm --registry=https://registry.npm.taobao.org运行项目: 先cd到项目文件夹,然后输入以下指令
2020-12-05 12:20:43 492
原创 SpringBoot创建第一个登录验证项目
1.配置Controller文件package com.example.controller;import com.example.model.TbUser;import com.example.service.ControllerService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;i
2020-12-04 23:06:39 188
原创 SpringBoot逆向工程自动生成实体类+mapper接口+映射xml文件
SpringBoot逆向工程自动生成实体类+mapper接口+映射xml文件1. 配置pom.xml文件<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.
2020-12-04 16:35:52 687 1
原创 idea建立最简单的SpringBoot项目(idea版本2019.3.5)
idea建立最简单的SpringBoot项目(idea版本2019.3.5)项目基于Spring-web,SpringMvc,SpringBoot,mybatis,mysql注意红色箭头文件一定要有UserControllerpackage com.example.controller;import com.example.entity.User;import com.example.entity.Ceshi;import com.example.service.UserServ
2020-12-03 20:48:09 882
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人