Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了程序的 2 个部分 - 客户端和服务器。
服务器安装在我的数据库所在的机器上(mysql)。
然后将客户端安装在各种机器上,然后客户端使用 RMI 与服务器交互。
服务器正在使用休眠来处理数据库(mysql)。
现在,如果客户端尝试同时在数据库中输入新行,它们都将具有相同的字段,这些字段将由服务器端编写的一些逻辑进行递增。
就我而言,我已经尝试过使方法同步,但它似乎不起作用。看起来好像多个客户端同时进行相同的方法调用。