If it's an infinite recursion, then
you should get StackOverflowException pretty soon. However, it depends on how long each recursion takes.
If it's high memory usage, it should run out of OOM eventually. However, because of the way GC works, when it you are at the point of OOM, the app slows down, which results in new objects being created slowly. So, it stays at the point of OOM for a long time. I've seen
JBoss freeze overnight because of OOM.
If it;s an infinite loop, it will truly stay frozen infinitely forever. This is very likely. It's very easy to do a silly mistake like this
>