I'm using the playframework with version 1.2.5 and I have just a simple Question.
If I use for example:
public static User findByUsername(String username) {
return User.find("username = ?", username).first();
}
So if I perform this call, does the "JPAQuery find()" or the playframework prevent cross site scripting and such things?
If not, what do I have easily to do for preventing it in all my database interactions?
Thanks a lot.
Cheers,
Marco