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.
来自 PHP,使用 CodeIgniter,处理表单验证非常简单;我现在正在寻找类似于我的 Java 应用程序的东西。(不是网络应用程序,也就是说)
当然,我可以创建自己的方法来实现这一点,并在提交按钮的actionPerformed事件上运行它。但是,这会导致很多if(formElement.getText.isEmpty())等等。
actionPerformed
if(formElement.getText.isEmpty())
当然,必须有更好的方法来做到这一点?最好没有XML或大的笨拙的框架。我只找到了为 Java Web 应用程序执行此操作的框架。谢谢。
XML