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.
一部のフィールドに注釈が必要なモデルがありますが、以下のコマンドを使用するときに、この検証を通過したい場合があります。
"validation.valid(object);".
それをしてもいいですか?どのように?
次のように、クラスから注釈を削除@Requiredし、コントローラー メソッドなどの別の場所でフィールドを検証する必要があります。
@Required
public class MyController extends Controller { public static void method( @Required value) { .... } }