Web User Interface for a Java application

后端 未结 7 1468
后悔当初
后悔当初 2020-12-14 03:22

I\'m trying to create a web user interface for a Java application. The user interface is going to be very simple, consisting of a single page with a form for users to pose t

7条回答
  •  粉色の甜心
    2020-12-14 03:54

    1. Jetty is a very lightweight container, and perfect for your development scenario.

    2. You might want to look at Wicket for your rendering side; you seem more comfortable doing code-like tasks as opposed to straight UI.

    3. The pattern you are describing is the Singleton pattern. Take a look at the google results for singleton in java.

提交回复
热议问题