Simplest standalone ApacheDS server 2024-06-09 1.5K This code run a standalone ApacheDS server, you can use ApacheDS studio to connect to it, it host localhost:10389 pom.xml…
Load jar and dynamically create object from it 2023-03-17 1.1K Two maven project, project A load the project B jar, create the object dynamically and invoke the method Project A:…
Great ByteBuddy tutorial 2022-07-02 1.6K refer to https://blog.csdn.net/wanxiaoderen/article/details/106544773
Convert 64 bits binary string to BigInteger and maintain the sign 2022-05-08 1.7K The first and third method converted successfully with sign. The second one fail. The reason 3rd way working is :…
Don't use "skip" in antlr grammar for netbeans syntax highlight 2021-11-16 2.8K use "channel (HIDDEN)" instead of "skip", otherwise the netbeans will throw exception.
validate() in TableCellRenderer affect performance in windows 2021-11-06 2.4K validate() in TableCellRenderer affect performance in windows, just read the source code of DefaultTableCellRenderer, just override it with empty function…
Netbeans bug 2020-05-28 2.6K Netbeans 11.3 + JDK 13.0.2 + FlatLaf Light theme. Missing character "l" in the package name. If mouse over, tooptip…
6 hours to fix my antlr netbeans plugin 2020-05-09 3.5K Used near 6 hours to fix my netbeans-antlr plugin. I have to remember these: Netbeans build in antlr library have…
Netbeans module failed to install nb-javac 2019-10-06 4.4K If you netbeans maven module used this in pom.xml, then you will have this problem
I thought Java swing is pixel graphic 2019-07-30 2.4K In last 20 years, I thought Java swing is pixel graphic, but i found out it is vector. I tried…