All Questions
Tagged with desktop-application java
4 questions
0
votes
1
answer
215
views
Exception handling with failure atomicity in desktop applications
When it comes to exception handling, there are many guidelines and best practices on the web. On of them is to throw early, catch late, or even Don't Catch. So when facing an exception, the current ...
2
votes
1
answer
749
views
How to access secure web services from a desktop application?
I'm writing a Java desktop application that will be available to the public. It will contact backend APIs via HTTPS using Jersey client.
I don't know anything about using certificates in desktop apps ...
2
votes
1
answer
8k
views
Java desktop application using MVC + Hibernate
I'm developing a Java desktop application. I'm planning to use MVC architecture described at Oracle site: Java SE Application Design With MVC.
I need to store data in database so I decide to use ...
6
votes
4
answers
21k
views
How to run an applet like a desktop application without installing entire JDK?
I want to make a desktop application- an analog-clock with the option of setting alarms using java. For rendering all the graphics and the button features, a Swing applet is the answer.
But the ...