首页
学习
活动
专区
工具
TVP
发布

一个会写诗的程序员的博客

专栏作者
1222
文章
2319606
阅读量
95
订阅数
java.sql.SQLException: Unknown system variable 'tx_isolation' 问题解决
问题描述 java.sql.SQLException: Unknown system variable 'tx_isolation' at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:359) at org.springframework.beans.factory.support.
一个会写诗的程序员
2022-07-01
6480
Monaco Editor Webpack Loader Plugin
A plugin to simplify loading the Monaco Editor with webpack.
一个会写诗的程序员
2022-05-13
1.4K0
OGNL (Object-Graph Navigation Language) 表达式 极简教程
OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects, plus other extras such as list projection and selection and lambda expressions. You use the same expression for both getting and setting the value of a property.
一个会写诗的程序员
2022-01-07
1K0
Spring 单例 Bean 与多线程深度分析
Spring 的 bean默认是单例的,在高并发下,如果在 Spring 的单例 bean 中设置成员变量,则会发生并发问题。最近在进行开发时,错误的在单例的bean中使用了成员变量,导致多个线程大并发访问时,出现赋值错误及日志打印混乱的问题。
一个会写诗的程序员
2022-01-07
2K0
Java String Format 使用实例
Always forgetting the Java String formatting specifiers? Or maybe you never took the time to learn.
一个会写诗的程序员
2021-12-16
4290
Spring Boot 自定义配置key @ConfigurationProperties(prefix = "db.clickhouse")
方案1:使用@Value读取application.properties里的配置内容 配置文件application.properties spring.application.name=springbootdemo server.port=8080 mail.username=application-duan mail.password=application-duan123456 测试代码类 import org.springframework.beans.factory.annota
一个会写诗的程序员
2021-12-16
4500
Maven 如何编译 java 和 kotlin 编码的混合项目
应用程序同时使用java和kotlin两种开发语言,则必须在 Java 编译器之前调用 Kotlin 编译器。
一个会写诗的程序员
2021-12-16
2.1K0
使用 javap 命令查看 Java Class 文件的字节码内容
Java 虚拟机(JVM)是运行 Java 字节码的虚拟机。JVM 有针对不同系统的特定实现(Windows,Linux,macOS),目的是使用相同的字节码,它们都会给出相同的结果。
一个会写诗的程序员
2021-12-16
1.3K0
Java Class 对象模型的数据结构分析: ClassLoader 与 Modifier
Instances of the class Class represent classes and interfaces in a running Java application. An enum is a kind of class and an annotation is a kind of interface. Every array also belongs to a class that is reflected as a Class object that is shared by all arrays with the same element type and number of dimensions. The primitive Java types (boolean, byte, char, short, int, long, float, and double), and the keyword void are also represented as Class objects.
一个会写诗的程序员
2021-12-16
3070
JVM 架构 : 运行时数据区 & 内存结构
Class loader is a subsystem in JVM, which is primarily responasible for loading the java classes, there are 3 different class loaders :
一个会写诗的程序员
2021-12-16
3260
Java 虚拟机圖文詳解: JVM 體系結構 ( The JVM Architecture Explained
A Virtual Machine is a software implementation of a physical machine. Java was developed with the concept of WORA (Write Once Run Anywhere), which runs on a VM. The compiler compiles the Java file into a Java .class file, then that .class file is input into the JVM, which loads and executes the class file. Below is a diagram of the Architecture of the JVM.
一个会写诗的程序员
2021-12-16
7040
Class JavaLaunchHelper is implemented in two place
Today I upgraded my Intellij Idea on macOS Sierra, and now, when I run apps in console I have this error:
一个会写诗的程序员
2021-12-16
3940
基于 ClickHouse OLAP 的生态:构建基于 ClickHouse 计算存储为核心的“批流一体”数仓体系
ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time.
一个会写诗的程序员
2021-12-16
1K0
jackson 序列化忽略未知字段: How to Ignore Unknown Properties While Parsing JSON in Java
使用 Jackson API 在Java中解析JSON时的一个常见问题是,当JSON包含未知属性时,即Java类没有与所有JSON属性对应的所有字段时,解析失败。
一个会写诗的程序员
2021-07-23
2.9K0
Spring 事件框架 ApplicationEvent & 观察者模式(Publisher -> Listener)
事件机制在一些大型项目中被经常使用,于是 Spring 专门提供了一套事件机制的接口,方便我们运用。本文来说说 ApplicationEventPublisher 的使用。
一个会写诗的程序员
2021-07-19
2.7K0
"Connection refused" when syncing Maven project in 2021.1 : java.rmi.ConnectException: Connection...
settings—》Build,Execution,Deployment—》Build Tools—》Maven—》Importing—》JDK for importer选择你安装的JDK版本
一个会写诗的程序员
2021-07-19
1.7K0
Spring Boot 项目访问依赖 jar 包内部的资源文件的路径问题详解
Spring Boot 项目访问依赖 jar 包内部的资源文件的路径问题详解 核心代码行: Resource[]resources =new PathMatchingResourcePatternResolver().getResources(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX +"META-INF/driver.properties"); 直接上源码: package com.bytedance.kunlun.engine.driverm
一个会写诗的程序员
2021-07-15
1.2K0
JDK-8135259 : InetAddress.getAllByName only reports "unknown error" instead of actual cause
https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8135259 JDK-8135259 : InetAddress.getAllByName
一个会写诗的程序员
2021-06-09
3530
编程语言进化史《禅与计算机程序设计艺术》 / 陈光剑
计算机编程语言是程序设计的最重要的工具,它是指计算机能够接受和处理的、具有一定语法规则的语言。
一个会写诗的程序员
2021-04-30
1.4K0
Java Agent (JVM Instrumentation 机制) 极简教程
Java 代理 (agent) 是在你的main方法前的一个拦截器 (interceptor),也就是在main方法执行之前,执行agent的代码。
一个会写诗的程序员
2021-04-15
7.8K0
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档