I am developing a web app with Play Framework. My app has a User class, which in turn has a username and an email property. Pretty standard stuff. However...
When a new user signs up via a form (signup,html), I want to check if the username and password are unique and if not, redirect them back to the form and display a message there.
I have already thought of some solutions, none of which are particularly graceful, It seems to me there must be an easy way of checking whether a username/email is unique in the database without putting constraints on the table itself (which leads to runtime errors when a duplicate value is inserted).
So... anyone ran into this same problem? And how did you fix it?