Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to externalize the namespace value in package-info.java

@javax.xml.bind.annotation.XmlSchema(namespace = "http://loclahost:9093/Request", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)

in the above code how should externalize the "http://loclahost:9093/Request".

Any help is greatly appreciated

share|improve this question

2 Answers

Annotation attribute values have to be compile time constants so the best you can do is to declare a public static final String NAMESPACE = "http://example.com" in another class and then say namespace = MyClass.NAMESPACE in the annotation. But you'd still have to re-compile package-info.java when MyClass changes.

share|improve this answer
I want to read the value like System.getProperty("nameSpace"); in MYClass – prem chander jonnala Oct 22 '12 at 15:01
I need your help on this – prem chander jonnala Oct 22 '12 at 15:05
@premchanderjonnala - Did you see my answer (stackoverflow.com/a/13013163/383861)? Do you really need the namespace to be dynamic? – Blaise Doughan Oct 22 '12 at 15:11
Thanks for the help, I need the namespace to be dynamic – prem chander jonnala Oct 22 '12 at 15:15
1  
@premchanderjonnala It's not possible, annotation attribute values must be compile time constants. – Ian Roberts Oct 22 '12 at 15:17
show 1 more comment

The namespace specified on the the @XmlSchema annotation isn't meant to correlate to the physical location of the XML schema. It is used to qualify the element, so that your address element is different from another organizations use of an address element. This is similar to package names in Java. As with package names, people generally use domain names for this purpose. I can't think of a good reason to have the namespace look like: http://loclahost:9093/Request.

share|improve this answer
Thanks for the help – prem chander jonnala Oct 22 '12 at 21:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.