utf8mb4 encoding support
Posted: Tue Jul 12, 2016 4:30 pm
Is l2jserver support utf8mb4 encoding? And how I must configure my db for this? Thx 

bad, it's bad..com.zaxxer.hikari.pool.PoolInitializationException: Exception during pool initialization: Unsupported character encoding 'utf8mb4'.
Why you need that?.KGB1st wrote:Is l2jserver support utf8mb4 encoding? And how I must configure my db for this? Thx
Why?!Sacrifice wrote:Why you need that?.KGB1st wrote:Is l2jserver support utf8mb4 encoding? And how I must configure my db for this? Thx
Properties (Java Platform SE 8) wrote: public void load(InputStream inStream) throws IOException
Reads a property list (key and element pairs) from the input byte stream. The input stream is in a simple line-oriented format as specified in load(Reader) and is assumed to use the ISO 8859-1 character encoding; that is each byte is one Latin1 character. Characters not in Latin1, and certain special characters, are represented in keys and elements using Unicode escapes as defined in section 3.3 of The Java™ Language Specification.
EDIT: I just se that utf8mb4 is a database thing. You are using the Hikari Database Pool implementation, which does not support utf8mb4.BalusC on stackoverflow wrote: When using a sane IDE such as Eclipse, this is already automatically done when you create a .properties file in a Java based project and use Eclipse's own editor. Eclipse will transparently convert the characters beyond ISO-8859-1 range to \uXXXX format.
Yes, I told about properties.HorridoJoho wrote:Are you talking about .properties files?
Yes. I did.HorridoJoho wrote:In your database try utf8 as standard enccoding and utf8mb4 on the tables.