اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

الاختبارات التجريبية

اجعلها الصفحة الرئيسية

احفظ هذه الصفحة في المفضلة

الاشتراك عبر البريد الإلكتروني
مقابلات تجريبية مباشرة من WithoutBook JAXB موضوعات مقابلات ذات صلة: 39

Interview Questions and Answers

تعرّف على اهم اسئلة واجوبة مقابلات JAXB للمبتدئين واصحاب الخبرة للاستعداد لمقابلات العمل.

إجمالي الاسئلة: 18 Interview Questions and Answers

افضل مقابلة تجريبية مباشرة يجب مشاهدتها قبل المقابلة

تعرّف على اهم اسئلة واجوبة مقابلات JAXB للمبتدئين واصحاب الخبرة للاستعداد لمقابلات العمل.

Interview Questions and Answers

ابحث عن سؤال لعرض الاجابة.

اسئلة واجوبة مستوى الخبير / ذوي الخبرة

سؤال 1

Customizing Type Bindings.

Default bindings can be overridden
at global scope
on case-by-case basis
Customizations include
names of generated package, classes and methods
method return types
class property (field) types
which elements are bound to classes, as opposed to being ignored
class property to which each attribute and element declaration is bound
احفظ للمراجعة

احفظ للمراجعة

احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.

افتح مكتبتي التعليمية
هل هذا مفيد؟
اضف تعليقا عرض التعليقات
سؤال 2

Syntax of customization.

Customizations can be specified in
the XML Schema (our focus)
a binding declarations XML document (not well supported by RI yet)
The XML Schema must declare
the JAXB namespace and version
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema
xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
jxb:version="1.0">
Customization elements are placed in annotation elements
<xsd:annotation>
<xsd:appinfo>
binding declarations
</xsd:appinfo>
</xsd:annotation>
احفظ للمراجعة

احفظ للمراجعة

احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.

افتح مكتبتي التعليمية
هل هذا مفيد؟
اضف تعليقا عرض التعليقات
سؤال 3

Discuss Customization Levels.

Customizations can be made at four levels
global
defined at top level in a <jxb:globalBindings> element
applies to all schema elements in the source schema
and in all included/imported schemas (recursively)
schema
defined at top level in a <jxb:schemaBindings> element
applies to all schema elements in the target namespace of the source schema
definition
defined in a type or global declaration
applies to all schema elements that reference the type or global declaration
component
defined in a particular schema element or attribute declaration
applies only to it
احفظ للمراجعة

احفظ للمراجعة

احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.

افتح مكتبتي التعليمية
هل هذا مفيد؟
اضف تعليقا عرض التعليقات
سؤال 4

Discuss Global Bindings attributes.

collectionType
indexed (uses array and provides methods to get/set elements) or fully-qualified-java-class-name(must implement java.util.List)
default is java.util.ArrayList
enableFailFastCheck
true or false (default)
if true, invalid property values are reported as soon as they are set, instead of waiting until validation is requested
not implemented yet in RI
generateIsSetMethod
true or false (default)
if true, generates isSet and unSet methods for the property
underscoreBinding
asCharInWord or asWordSeparator (default)
if asWordSeparator , underscores in XML names are removed and words are camel-cased to form Java name
for example, gear_shift_knob goes to gearShiftKnob
bindingStyle (was modelGroupAsClass)
modelGroupBinding or elementBinding (default)
choiceContentProperty
true or false (default)
allows objects to hold one of a number of property choices which may each have a different data type
enableJavaNamingConventions
true (default) or false
fixedAttributeAsConstantProperty
true or false (default)
if true, fixed attributes will be represented as constants
typesafeEnumBase
xsd:string , xsd:decimal , xsd:float , xsd:double or xsd:NCName (default)
defines field type used to represent enumerated values in generated typesafe enum class
typesafeEnumMemberName
generateName or generateError (default)
specifies what to do if an enumerated value cannot be mapped to a valid Java identifier
generateName generates names in the form VALUE_#
generateError reports an error
احفظ للمراجعة

احفظ للمراجعة

احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.

افتح مكتبتي التعليمية
هل هذا مفيد؟
اضف تعليقا عرض التعليقات
سؤال 5

What is the syntax of schemaBindings?

The syntax for the schemaBindings element is
<jxb:schemaBindings>
<jxb:package [name="package-name"]>
<jxb:javadoc> ... javadoc ... </jxb:javadoc>
</package>
<jxb:nameXmlTransform>
<jxb:typeName prefix="prefix" suffix="suffix"/>
<jxb:elementName prefix="prefix" suffix="suffix"/>
<jxb:modelGroupName prefix="prefix" suffix="suffix"/>
<jxb:anonymousTypeName prefix="prefix" suffix="suffix"/>
</jxb:nameXmlTransform>
</jxb:schemaBindings>
every element and attribute within schemaBindings is optional
احفظ للمراجعة

احفظ للمراجعة

احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.

افتح مكتبتي التعليمية
هل هذا مفيد؟
اضف تعليقا عرض التعليقات

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.