- 浏览: 358211 次
- 性别:
- 来自: 广州
最新评论
-
ian_jiang:
不知道 你说了个 什么?
GWT下如何获取到javaee servlet下会话信息 -
心愿:
index.jsp应该建立在哪个目录下
dwr3.0的HELLOWORLD创建过程 -
349446658:
classpath:path是老的指定配置文件路径的方式。升级 ...
升级2 -
349446658:
新版本不是在type中指定first,而是指定1来表示跳到第一 ...
分页错误2 -
349446658:
这是因为后面的版本规范了指定配置文件路径的方式,必须指定为如下 ...
升级错误
文章列表
Docker中国区官方镜像:
https://registry.docker-cn.com
网易:
http://hub-mirror.c.163.com
ustc:
https://docker.mirrors.ustc.edu.cn
中国科技大学:
https://docker.mirrors.ustc.edu.cn
阿里云:
https://cr.console.aliyun.com/
腾讯云:
https://mirror.ccs.tencentyun.com
https://ollama.com/download/windows
https://blog.csdn.net/hwijew/article/details/120493392
google的chrome浏览器有个自动更新功能。本来是一个很好用的功能。
可是恼火的是完全无法控制。我需要固定在一个版本上。它每天一启动就给我自动更新掉了。还时不时的升级。着实是 ...
JAVA_HOME环境变量的配置详解
为什么要配置java_home这个环境变量?
Java_home言外之意就是Java的家,本地开发java的环境,为的本地使用“.java”文件的进行开发时能够找到对应的开发工具。
jdk是什么?
JDK时Java的开发工具,安装成功后的形成的文件夹如下图
Jdk文件夹是本地开发真正的工具包,里面包含了Java开发(编译)需要的各种文档,jre-Java运行环境(编译完毕可操作class文件的运行),java文件进行编译,运行各种操作的exe引擎。
jre该环境实际在jdk文件中也包含了,只不过该jre是单独的,为class文件提供运行环境,例如 ...
pyinstaller 生成时报找不到库咋办.
先pip install 相关的库
>pip install pypiwin32 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install flask
pyinstaller --hidden-import=flask --hidden-import=pypiwin32api -F ./server.py
win10自带的定时任务程序无法执行BAT
- 博客分类:
- bat
win10自带的定时任务程序无法执行BAT,你发现你设置的WIN10定时任务不能正常跑BAT.
那是因为有个地方还要配置一下。
初始地址要填上你的初路径目录。
如:f://12345/aaa.bat
初始路径要填上f://12345/
download 2 source flask,win32api
D:\>C:\Users\admin\.conda\envs\python37\python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
ERROR: You must give at least one require ...
pip安装xxx库出现问题
- 博客分类:
- python
pip安装xxx库出现问题:
比如,xxx是pandas
(py37) user@node01:~$ pip install pandas
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of ...
SpringCloud00 _Restemplate的getForEntity、getForObject、 postForEntity、postForObject
所得皆惊喜
于 2020-12-08 10:49:55 发布
2399
收藏 9
分类专栏: SpringCloud微服务
版权
SpringCloud微服务
专栏收录该内容
9 篇文章15 订阅
订阅专栏
文章目录
①. getForEntity
②. getForObject
③. postForEntity
④. postForObject
①. getForEntity
①. getForEntity方法的返回值是 ...
大量插入数据时报错:连接池异常。
2022-09-02 17:19:51 [ERROR] - The driver was unable to create a connection due to an inability to establish the client portion of a socket.
This is usually caused by a limit on the number of sockets imposed by the operating system. This limit is usually configurable.
For ...
package com.yuexiu.yxdp.rpt.behavior.web.rest;
import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.KeyEvent;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class Test1 {
private Robot robot = null ...
IDEA中常用快捷键
psvm —— 用来快速写一个main函数
例如:输入psvm后按回车,就会直接生成 “ public static void main(String[] args) ”这样一个语句。
快捷键二:
sout —— 用来快速写一个println函数
例如:输入sout后按回车,就会直接生成 “ System.out.println( ); ” 这样一个语句。
快捷键三:
fori —— 用来快速写一个for循环
例如:输入fori后按回车,就会直接生成 “ for(int i=0;i< ;i++) ” 这样一个语句。
...
Java的Runtime.getRuntime().exec(commandStr)可以调用执行cmd指令。
cmd /c dir 是执行完dir命令后关闭命令窗口。
cmd /k dir 是执行完dir命令后不关闭命令窗口。
cmd /c start dir 会打开一个新窗口后执行dir指令,原窗口会关闭。
The POM for cn.abc:2.3.1-SNAPSHOT is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
The POM for cn.com.xxx:abc:jar:2.3.1-SNAPSHOT is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details ...
IDEA报Could not autowire. No beans of 'ProductCategoryMapper' type found(详细分析).
今天在写springboot案例的时候发现了Could not autowire. No beans of 'ProductCategoryMapper' type found.
意思为@Autowired没有起效,不能自动注入,beans对象的类型没有找到
上网查询资料发现可能错误如下:
1、@Service注解的包倒错了
正确的包为:
import org.springframew ...