التحقق من صحة وسائط الطفرات
تعلّم التحقق من صحة وسائط الطفرات الواردة في واجهة GraphQL API مبنية باستخدام Spring Boot عبر Bean Validation، لضمان وصول البيانات النظيفة والمنظمة فقط إلى طبقة البيانات.
التحقق من صحة وسائط الطفرات درس مجاني في GraphQL APIs with Spring Boot على CoddyKit. هذا هو الدرس 4 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في GraphQL APIs with Spring Boot، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة GraphQL APIs with Spring Boot 4 دروس في المجموع.
بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.
Why Validate Mutation Input?
Mutations change your data, so the arguments they receive must be trustworthy. Without validation, clients could send empty names, negative prices, or malformed emails straight into your database.
Input validation rejects bad data early and returns a clear error before any persistence happens.
Validation in the GraphQL Lifecycle
GraphQL already validates the shape of your input against the schema (types, required fields). But it does not check business rules like 'price must be positive'.
That semantic layer is your responsibility, and Spring's Bean Validation fits perfectly here.
Bean Validation Annotations
Spring Boot ships with Jakarta Bean Validation. Common annotations:
@NotNull,@NotBlankfor required values@Sizefor length bounds@Min,@Max,@Positivefor numbers@Emailfor email format
Annotating an Input Class
Map your GraphQL input type to a Java record or class and add constraints to its fields.
public record CreateBookInput(
@NotBlank String title,
@Size(min = 2, max = 60) String author,
@Positive double price
) {}Triggering Validation in a Resolver
Add @Valid to the argument in your mutation method. Spring then checks every constraint before the method body runs.
@MutationMapping
public Book createBook(@Argument @Valid CreateBookInput input) {
return bookService.create(input);
}What Happens on Failure
If a constraint fails, Spring throws a ConstraintViolationException before your service code runs. The mutation does not persist anything, protecting your data layer from invalid state.
Custom Error Messages
Each annotation accepts a message attribute so clients see helpful feedback instead of a generic failure.
@NotBlank(message = "Title is required")
String title;Mapping Violations to GraphQL Errors
Use a DataFetcherExceptionResolver to turn validation exceptions into clean GraphQL errors with field-level detail, so clients know exactly which input was wrong.
@Override
public GraphQLError resolveToSingleError(Throwable ex, DataFetchingEnvironment env) {
return GraphqlErrorBuilder.newError(env)
.errorType(ErrorType.BAD_REQUEST)
.message(ex.getMessage())
.build();
}Custom Validators
For rules the built-in annotations cannot express (like 'ISBN must be unique'), write a custom constraint implementing ConstraintValidator and annotate fields with it.
public class IsbnValidator implements ConstraintValidator<ValidIsbn, String> {
public boolean isValid(String value, ConstraintValidatorContext ctx) {
return value != null && value.matches("\\d{13}");
}
}Validating Nested Inputs
When an input contains another object, mark the nested field with @Valid too. Validation then cascades into the child object.
public record OrderInput(
@NotNull @Valid AddressInput shippingAddress,
@Positive int quantity
) {}Best Practices
Keep validation reliable:
- Validate at the boundary, before any business logic
- Return field-specific messages clients can act on
- Reuse input classes across related mutations
- Keep custom validators stateless and fast
Quick Check
Test your understanding of mutation validation.
Recap
You learned to validate mutation input:
- GraphQL checks shape; you enforce business rules
- Annotate input classes with Bean Validation constraints
- Use
@Validin resolvers to trigger checks - Map violations to clean GraphQL errors
- Write custom validators and cascade with nested
@Valid
Validated mutations keep your data layer safe and clean.
تعلم GraphQL APIs with Spring Boot مع معلم ذكاء اصطناعي — مجانًا
اكتب وقم بتشغيل أكوادك الفعلية في المتصفح، واحصل على مساعدة فورية من معلم ذكاء اصطناعي متاح 24/7، واستمر من حيث توقفت على الويب أو في التطبيق.
- الدورات
- 12
- الدروس
- 48
الأسئلة الشائعة
هل درس «التحقق من صحة وسائط الطفرات» مجاني؟
نعم — نص درس «التحقق من صحة وسائط الطفرات» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة GraphQL APIs with Spring Boot، انتقل إلى CoddyKit PRO. تتضمن دورة GraphQL APIs with Spring Boot 4 دروس في المجموع.
ماذا ستتعلم في «التحقق من صحة وسائط الطفرات»؟
تعلّم التحقق من صحة وسائط الطفرات الواردة في واجهة GraphQL API مبنية باستخدام Spring Boot عبر Bean Validation، لضمان وصول البيانات النظيفة والمنظمة فقط إلى طبقة البيانات. تتمرن على GraphQL APIs with Spring Boot مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.
هل أحتاج إلى خبرة سابقة لأبدأ GraphQL APIs with Spring Boot؟
لا تُشترط خبرة سابقة. GraphQL APIs with Spring Boot على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 4 من أصل 4.
كم من الوقت يستغرق درس «التحقق من صحة وسائط الطفرات»؟
معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.
هل يمكنني كتابة وتشغيل أكواد في درس GraphQL APIs with Spring Boot هذا؟
نعم. كل درس في GraphQL APIs with Spring Boot يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.
جميع الدروس في هذه الدورة
- فهم GraphQL Mutations
- إنشاء البيانات باستخدام Mutations
- تحديث البيانات وحذفها
- التحقق من صحة وسائط الطفرات