How to set blank password for MySQL connection pool in GlassFish 4 from GUI?

I was unable to set an empty password for the MySQL connection pool from the GUI to glassfish 4. In previous versions of glassfish, it worked by simply placing "()" without quotes. It no longer works for me in glass 4th.

By the way, I gladly posted my problem.

Does anyone know that this is the right way to do this in a glass 4th picture?

Thanks in advance for your support.

Hi

+4
source share
1 answer

What I did to fix this was manually in / glassfish / domains / (yourDomainName) /domain.xml add the following property to the connection pool:

<property name="password" value=""></property> 

Remember to restart Glassfish after making the changes.

+9
source

Source: https://habr.com/ru/post/1502496/


All Articles