- 博客(11)
- 问答 (1)
- 收藏
- 关注
原创 pom文件中maven依赖的scope有哪几种类型,分别是什么作用
在Maven的pom.xml文件中,标签用于定义依赖项的作用域。作用域决定了依赖项的生命周期、可见性和使用范围。
2024-04-07 11:52:56
1112
原创 mysql如何查询rownum序号(类似oracle自带的rownum)
select * from test_table为查询的sql,外部套的一层为固定写法。查询结果row_number即为编号,结果示例如下。
2023-10-20 11:41:26
2160
原创 npm info: node: --openssl-legacy-provider is not allowed in NODE_OPTIONS
npm info: node: --openssl-legacy-provider is not allowed in NODE_OPTIONS
2023-02-06 02:14:26
16654
原创 springboot直接访问html文件
在resources目录下创建public文件夹,将html文件,css文件,js文件都放public文件夹里面
2022-02-16 00:14:37
659
原创 you have not installed the Java Cryptography Extension (JCE)
Error Encrypting: Encryption raised an exception. A possible cause is you are using strong encryption algorithms and you have not installed the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files in this Java Virtual Machine
2022-02-02 22:14:48
972
原创 nodejs服务器读取图片返回给浏览器显示
varhttp = require('http');varfs = require('fs');varurl = require('url');// 创建服务器http.createServer(function(request, response) {// 解析请求,包括文件名varpathname = url.parse(request.url).pathname;// 输出请求的文件名console.log("Request for...
2021-05-08 13:11:25
384
原创 关于registry key 'Software\JavaSoft\Java Runtime Environment' has value'1.8',but '1.7' is requaired问题
今天在使用apache的activeMQ时遇到了这个提示,程序一直启动不了,每次都是报这个错。搜索了半天,发现了这么一个解决方法:把C盘中 Windows\System32 和 Windows\SysWOW64(如果你的系统是64位的)中的java.exe, javaw.exe 和javaws.exe这几个程序删掉即可。虽然不明白为什么这么做,因为C盘的东西我不敢随便动,但是还是把这三
2017-06-29 23:07:23
590
原创 html中文本输入框与后边验证码图片高度不一致的解决办法
解决办法:为input标签和img标签同时设置style="vertical-align:middle"
2017-04-26 22:02:50
1629
转载 在Servlet中使用getParameter()方法获取get请求中的中文参数乱码解决方法
我们都知道,使用Servlet处理get请求时,如果get请求的参数中有中文,直接接收会是乱码,这个时候我们使用类似下面的语句来处理乱码:String name = request.getParameter("name");System.out.prinlnt(name); // 乱码// 处理乱码name = new String(name.getBytes("ISO8859-1"
2017-04-19 23:33:34
966
原创 自学小笔记(2017-4-16,HTML)
1.background-size的几个属性值:contain 图片长宽会等比缩放到能够完全被容器容纳; cover 图片长宽会等比缩放到完全覆盖容器,所以图片可能会有超出部分;
2017-04-16 14:34:50
226
空空如也
springboot使用Atomikos管理分布式事务时,初始化oracle数据源失败
2022-02-12
TA创建的收藏夹 TA关注的收藏夹
TA关注的人