tags:

views:

26

answers:

1

Hi all,

I'm having trouble with Web Start.

There is no problem if I start the application from IntelliJ.

With Web Start it's working ok most of the time but at a point I'm loading 10000 records from database and there it's getting very slow.

What can I do?

Thanks,

A: 

It is possible that running as a WebStart application, your application has diferent memory settings. You should attempt to tweak those (as described here) and see if that makes a difference with application performance.

Other than that, you should profile your application to see where the delays occur (which parts of the application, what kind of operations, constantly or intermittently etc.)

Tomislav Nakic-Alfirevic
as far as I see the problem is with UI,I will try your suggesstions thank you
engin
I profiled the problem was one of the apis using assertions too much, so disabling the assertions with WebStart solved it,Thanks,
engin