摘要:
一、元旦第一天超级管理我也忘记了,没办法记性差 1、连接到sqlplus,sqlplus /nolog 2、使用操作系统认真登陆, conn/as sysdba 3、把system 设置成管理员,alter user system identified by system; 4、登录 pl/sql, 阅读全文
摘要:
1、引入引用 <?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" 阅读全文
摘要:
@EnableGlobalMethodSecurity三方法详解 要开启Spring方法级安全,在添加了@Configuration注解的类上再添加@EnableGlobalMethodSecurity注解即可 /** * spring security配置 * @EnableGlobalMetho 阅读全文
摘要:
1、服务器上安装redis,mysql 2、服务器上安装JKD8版本,检查安装成功Java -version 3、修改druid.yml 的数据库连接池,发布到服务器上修改未能成功,未解之谜,打包项目,通过maven 的package命令,生成target文件夹拷贝到服务器上, 4、执行若依的sql 阅读全文
摘要:
以前我的测试库和正式库度是同一个,最近检查需要创建个测试库,每次创建测试库度是百度找文章,现在总结一下创建的方式 1、创建一个数据库,把它分离,这个数据库就叫做测试库,把它复制到formal文件夹和test文件夹 2、附加以后右键修改,但是一般会报错,因为我的IIS运行着,所以需要结束进程 数据库不 阅读全文
摘要:
1、从控制面板安装,如果不下载镜像文件,安装的时候提示安装失败,只能从镜像里面选择,下载镜像以后解压,解压找到该目录\sources\sxs\,比如D:\Windows serve 2012\Windows serve 2012\cn_windows_server_2012_r2_x64_dvd_2 阅读全文
摘要:
一、新建SpringBoot项目 ,选择Maven,插件选择SpringWeb 二、引入springSecurity包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-s 阅读全文
摘要:
一、SpringSecurity主要用于鉴权和授权功能,他的过滤器链路如图 BasicAuthenticationFilter实现的是HttpBasic模式的登录认证 UsernamePasswordAuthenticationFilter实现用户名密码的登录认证 RememberMeAuthent 阅读全文
摘要:
一、集成mybatis, Invalid bound statement (not found): com.example.spring1030001.Services.DemoService.getUser 1、检查mapper.xml文件地址是否对了 2、xml文件 的方法和接口的方法是否一致 阅读全文
摘要:
1、新建springboot项目,选择mysql、jdbc、web,使用maven管理项目 2、检查pom.xml依赖,已经添加了mybatis、spring-boot、junit依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="ht 阅读全文