- 博客(42)
- 收藏
- 关注
原创 idea怎么快速生成接口实现类
打开接⼝类,将⿏标移到接⼝名称上,**Alt+Enter**后点击**implements interface*
2022-07-31 16:46:12 1397
原创 shiro通用配置类
@Configurationpublic class ShiroConfig { //安全器管理-管理所有的subject @Bean public SecurityManager securityManager(UserRealm userRealm){ DefaultWebSecurityManager securityManager=new DefaultWebSecurityManager(); securityManager.setRe
2021-09-08 16:03:01 277
原创 自定义Realm
@Componentpublic class UserRealm extends AuthorizingRealm{ private static final Logger log= LoggerFactory.getLogger(UserRealm.class); @Autowired private SysUserDao sysUserDao; //@Autowired //private SysMenuDao sysMenuDao; @Auto
2021-09-08 16:00:54 125
原创 兴业数金技术面
1、自我介绍2、介绍项目接下来的问题基本都是根据你的项目描述来问的:1、注册和登录2、shiro版本3、为啥要加盐4、springioc用到的注解5、控制层用到哪些注解,可以传哪些类型的参数,可以传bean对象吗6、前端在传输过程要加密吗?怎么加?7、springaop8、dao有用到哪些中间件吗9、#{} 和¥${}最后是反问...
2021-08-31 21:15:26 285
原创 国内镜像安装tensorflow
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.5.0
2021-06-04 00:37:23 674
原创 matplotlib画图时调整子图的间距
使用python子图位置调整 API:subplots_adjust(left=None, bottom=None, right=None, top=None,wspace=None, hspace=None)# 参数说明:top、bottom、left、right:整个图距离上下左右边框的距离wspace、hspace:这个才是调整各个子图之间的间距wspace:调整子图之间的横向间距hspace:调整子图之间纵向间距...
2021-04-15 21:47:35 2229
原创 IDEA中enter键无法换行
今天用IDEA时,可能不小心按错了,导致enter键不能换行:如下,按enter只能往下行走移动解决办法:Fn+insert,这样就切换回可以换行的enter了
2021-03-06 17:07:48 11129 14
原创 linux命令提示符快捷键
常用1. Tab这是你不能没有的 Linux 快捷键。它将节省你 Linux 命令行中的大量时间。只需要输入一个命令,文件名,目录名甚至是命令选项的开头,并敲击 tab 键。它将自动完成你输入的内容,或为你显示全部可能的结果。如果你只记一个快捷键,这将是必选的一个。2. Ctrl + C这些是为了在终端上中断命令或进程该按的键。它将立刻终止运行的程序。如果你想要停止使用一个正在后台运行的程序,只需按下这对组合键。3. Ctrl + Z该快捷键将正在运行的程序送到后台。 通常,你可以在使用
2021-02-16 11:58:50 1260
原创 YumRepo Error: All mirror URLs are not using ftp, http[s] or file. Eg. Invalid release/repo/arch co
在使用yum安装方式安装 lrzszyum install lrzsz时发生错误出现这个错误的原因是 yum 源失效了,需要更换新的源地址。具体方法如下:替换新的源: vault.centos.org修改 /etc/yum.repos.d 中的 CentOS-Base.repo1.注释所有的 mirrorlist2.取消所有的 baseurl 注释3.将 baseurl 中的mirror.centos.org 改为 vault.centos.org修改内容如下替换新的源: vault.c
2021-02-16 11:09:41 378
原创 Cannot chdir: No such file or directory解决方法
Cannot open: No such file or directory解决方法:在开头加sudo,然后填写完整目录成功解压
2021-02-15 17:30:34 5135
原创 SpringBoot工程热部署
我们在开发中反复修改类、页面等资源,每次修改后都是需要重新启动才生效,这样每次启动都很麻烦,浪费了大量的时间,我们可以在修改代码后不重启就能生效,在 pom.xml 中添加如下配置就可以实现这样的功能,我们称之为热部署。<!--热部署配置--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifa
2021-02-02 10:27:59 90
原创 java.lang.IllegalStateException: Failed to load ApplicationContext解决方法
第一步 看caused by后的内容我的caused by:Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested excep
2021-01-30 11:06:21 4082
原创 java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException解决办法
在pom.xml文件中加入依赖<dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> </dependency> <dependency>
2021-01-29 15:47:16 255
原创 解决maven项目创建过慢的问题
注意这里是重点这里记得使用本地仓库输入的值为:Name:archetypeCatalogValue:internal然后点击 Finish完成!之后就会自动下载,我们这时发现下载的速度是特别的快,几秒钟就搞定了!
2021-01-26 22:21:18 97
原创 maven下载jar包速度慢(解决办法)
1、右键项目选中maven选项,然后选择“open settings.xml”或者 “create settings.xml”2、maven是支持镜像的,我们可以在maven的conf文件加下的setting.xml文件中找到标签<mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that
2021-01-20 10:13:08 240
原创 idea怎么设置包分层显示
使用Intellij IDEA创建项目发现包没有分层,使用不方便。可以点击右上角的设置,把红框选项的√去掉即可。这样就可以分层显示了
2021-01-08 11:36:25 1873
原创 Property dataSource is required 异常处理
在练习黑马旅游网项目时遇到一个异常,控制台显示Property ‘dataSource’ is required,然后用debug发现创建JdbcTemplate 时错误,检查代码:InputStream is=JDBCUtils.class.getClassLoader().getResourceAsStream(“/druid.properties”);里面的配置文件路径多加了一个/,将/druid.properties中的/去掉即可...
2021-01-01 16:17:50 777
原创 无法在web.xml或使用此应用程序部署的jar文件中解析绝对uri:[http://java.sun.com/jsp/jstl/core]
解决:如果你是用 idea 的话,那就是 jar 包没有导入成功,需要选择【File】-【Project Structure…】 选择【Artifacts】-【Output Layout】。看看Available Elements这一侧有没有jar包,如果有就说明没有导入成功,对jar包右键-Put into… ,就好了...
2020-12-22 16:27:31 181
原创 Mysql基础
配置MySQL服务启动1. 手动。2. cmd–> services.msc 打开服务的窗口3. 使用管理员打开cmd* net start mysql : 启动mysql的服务* net stop mysql:关闭mysql服务* MySQL登录1. mysql -uroot -p密码2. mysql -hip -uroot -p连接目标的密码3. mysql --host=ip --user=root --password=连接目标的密码* MySQL退出1. exit
2020-10-25 15:43:43 69
原创 junit单元测试、反射、注解
junit单元测试:测试分类:黑盒测试:不需要写代码,给输入值,看程序是否能够输出期望的值。白盒测试:需要写代码的。关注程序具体的执行流程。Junit使用:白盒测试步骤:定义一个测试类(测试用例)建议:测试类名:被测试的类名Test CalculatorTest包名:xxx.xxx.xx.test cn.itcast.test定义测试方法:可以独立运行建议:方法名:test测试的方法名 testAdd()返回值:void参数列表:空参
2020-10-23 11:54:57 206
原创 方法引用(::)
在使用Lambda表达式的时候,我们实际上传递进去的代码就是一种解决方案:拿什么参数做什么操作。那么考虑 一种情况:如果我们在Lambda中所指定的操作方案,已经有地方存在相同方案,那是否还有必要再写重复逻辑?1.1冗余的Lambda场景来看一个简单的函数式接口以应用Lambda表达式:@FunctionalInterface public interface Printable { void print(String str); }在 Printable 接口当中唯一的抽象方
2020-10-17 11:05:56 238 1
原创 国内几大常用镜像源
清华(常用):https://pypi.tuna.tsinghua.edu.cn/simple阿里云:https://mirrors.aliyun.com/pypi/simple/中科大: https://pypi.mirrors.ustc.edu.cn/simple/豆瓣:https://pypi.douban.com/simple/
2020-09-01 10:14:42 11892
原创 tensorflow镜像下载并验证是否安装成功
CPU版:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.1.4验证:先在CMD切换到python。然后直接输入:import tensorflow as tf sess = tf.Session() a = tf.constant(1) b = tf.constant(2) print(sess.run(a+b))
2020-08-30 15:25:55 588
原创 IDEA中新打开的Maven项目依赖如何引入到External Libraries中
当我们新打开一个maven时idea左边的External Libraries中并没有同时把依赖也导进去解决方法:在IDEA右侧的Maven projects中对应的Module名称上右键,选择Reimport即可更新相关依赖。
2020-07-06 17:33:57 2838 2
原创 IDEA中导入项目后的新的maven右键没有Run
解决:这里有五个模块,我们一般代码java都在Sources模块下,我们只需要点击Sources后,再去点击Apply就行了这时我们再点击右键就有run
2020-07-06 17:26:55 4539 1
原创 Error:(3, 23) java: 程序包junit.framework不存在
问题在使用maven进行一个工程的编译,已加入junit包的依赖,编译的时候却总是报“junit.framework不存在”错误。pom.xml中junit包加入如下:<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test<
2020-07-06 17:16:25 2940
原创 ttensorflow版本问题出现的错误(矩阵相乘)
在用tensorflow时可能会遇到一部分版本问题,可能出现一些错误,比如在矩阵相乘时会遇到上面的报错。def add_layer(inputs, in_size, out_size, activion_function=None): Weights = tf.Variable(tf.random_normal([in_size, out_size])) biases = tf.Variable(tf.zeros([1, out_size]) + 0.1) Wx_plus_b =
2020-06-11 18:46:25 310
原创 运行tensorflow报AttributeError: __enter__错误解决方法
错误: with tf.Session as sess:AttributeError: __enter__全部代码:import tensorflow.compat.v1 as tftf.disable_v2_behavior()state = tf.Variable(0, name='counter')print(state.name)one = tf.constant(1)new_value = tf.add(state, one)update = tf.assign(s
2020-06-11 11:05:57 1566 1
原创 RuntimeError: tf.placeholder() is not compatible with eager execution解决
用tensorflow2.0运行1版本的代码出现解决方法:在开头处添加代码:tf.compat.v1.disable_eager_execution()
2020-06-01 15:17:29 2494 3
原创 python实现各种滤波降噪
import numpy as npimport cv2import matplotlib.pyplot as plt######## 四个不同的滤波器 #########img = cv2.imread('money_t.jpg')# 均值滤波img_mean = cv2.blur(img, (5,5))# 高斯滤波img_Guassian = cv2.GaussianBlur(img,(5,5),0)# 中值滤波img_median = cv2.medianBlu
2020-05-23 15:16:14 4050
转载 Intellij idea 报错:Error : java 不支持发行版本5
Intellij idea中新建了一个Maven项目,运行时报错如下:Error : java 不支持发行版本5参考别人的方法之后,按照上面的办法改改就行了
2020-05-19 14:21:09 214
原创 初学Mybatis获取SqlSession报空指针异常
异常如下:Exception in thread "main" java.lang.NullPointerException at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:84) at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:64) a
2020-05-18 21:43:11 1241
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人