Java

Open Web Application Security Project (OWASP)

The Open source OWASP( Open Web Application Security Project) is a non revenue dependent worldwide charity organization, concentrating on the improvement of web application security. Their particular mission is to highlight the application security mechanism in every way possible, so that people and organizations can be informed regarding original application security risks and their solutions. [...]

Handling memory leaks in Java

Detecting Memory Leak in Java Simple reason is for memory leaks in Java is due to poor application designs where garbage collector is unable to remove object references as they are referenced by static variables. If you are gettingĀ  java.lang.OutOfMemoryError that means either your Java heap does not have enough memory to create objects or [...]