How to hide warning “Illegal reflective access” in java 9 without JVM argument?

There are ways to disable illegal access warning, though I do not recommend doing this. 1. Simple approach Since the warning is printed to the default error stream, you can simply close this stream and redirect stderr to stdout. public static void disableWarning() { System.err.close(); System.setErr(System.out); } Notes: This approach merges error and output streams. … Read more

Netty vs Apache MINA

While MINA and Netty have similar ambitions, they are quite different in practice and you should consider your choice carefully. We were lucky in that we had lots of experience with MINA and had the time to play around with Netty. We especially liked the cleaner API and much better documentation. Performance seemed better on … Read more

What’s the difference between Jetty and Netty?

Jetty is a lightweight servlet container, easy to embed within a java application, there is an easy to use jetty client also. Netty is an asynchronous event-driven network application framework. You can write your own servlet container or http client app with help of the Netty framework for example. Edit: Forgot to mention that Jetty … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)