06 2022 档案

摘要:全局配置 旧版本 创建一个配置类 加上注解 @Configuration @Bean public PaginationInterceptor paginationInterceptor(){ PaginationInterceptor paginationInterceptor = new Pag 阅读全文
posted @ 2022-06-26 16:54 Hello霖 阅读(37) 评论(0) 推荐(0)
摘要:Error creating bean with name ‘dataSource’: Unsatisfied dependency expressed through field ‘basicProperties’; 新建的springboot项目没有导入这个包 <!-- jdbc--> <dep 阅读全文
posted @ 2022-06-24 15:06 Hello霖 阅读(1286) 评论(0) 推荐(0)
摘要:router 里面的index.js配置里面 // 引用 Vue 和路由组件 import Vue from 'vue'; import VueRouter from 'vue-router' // 使用路由组件 Vue.use(VueRouter) // 引入路由页面 import Home fr 阅读全文
posted @ 2022-06-19 21:29 Hello霖 阅读(291) 评论(0) 推荐(0)
摘要:一条普通的弹出信息框代码: MessageBoxA(NULL, "欢迎", "提示框", MB_OK); 需要是4个参数 #include <windows.h> 需要导入该头文件,因为MessageBoxA函数需要 现在不用这种方式弹出信息框,改用asm汇编方式 使用 __asm{} char s 阅读全文
posted @ 2022-06-14 20:06 Hello霖 阅读(1195) 评论(0) 推荐(0)
摘要:准备: 1.CE 2.测试用软件一个 软件每次点击攻击,血量会减少6 开始 先4字节找到血量的地址 当前血量 238,搜索238,攻击一下,血量减少6,搜索232 血量变为232 剩下一个地址就是我们要的。 查看是什么修改了该地址,前面的sub是我们要找的 减值操作 点击显示反汇编代码 我们需要注入 阅读全文
posted @ 2022-06-13 19:25 Hello霖 阅读(2246) 评论(0) 推荐(0)
摘要:准备: nb模块5.1 E语言5.9 1.使用指针扫描找出阳光基址 基址:游戏基址+001BA578+18+1C+555C 2.E语言读取阳光的值 pid为全局变量 .版本 2 .支持库 spec .局部变量 阳光地址, 长整数型 pid = 进程一名取PID (“PlantsVsZombies.e 阅读全文
posted @ 2022-06-13 16:45 Hello霖 阅读(259) 评论(0) 推荐(0)
摘要:方式1: 配置文件: spring.mvc.static-path-pattern=/image/** spring.resources.static-locations=file:C:/Users/zwl/Desktop/wxhook/imgs/ 设置本地图片资源路径和请求路径前缀 请求地址: 1 阅读全文
posted @ 2022-06-01 20:11 Hello霖 阅读(111) 评论(0) 推荐(0)