Web User Interface for a Java application

后端 未结 7 1462
后悔当初
后悔当初 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 04:05

    1. app server: tomcat
    2. web page: jsp
    3. You need a class which is Singleton or class with static method. Word of caution: Beware of race condition. You might need to use synchronized keyword for those methods involving update/modify operation.

提交回复
热议问题