ByPassing Google App Engine SDK to allow black listed classes

Is there a way for the google app engine sdk workaround to allow classes that are not in the GAE JRE whitelist? I know that the application that I will create will not run in appspot, but at least on my development server, I need to access the postgresql database (java.net.socket. *) And generate some files ( java.io.FileWriter) on my development server.

+3
source share
1 answer

Run your code in another servlet container, such as jetty .

+3
source

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


All Articles