What does “externalising a url” mean?
(with respect to web application programming.)
What does externalising a url mean? (with respect to web application programming.)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually, if you change things in your code, you have to compile, test, and deploy before you can see the changes. To externalize is to put this information in a place where it can be changed without recompiling and reinstalling (sometimes without restarting the server/application).
Typically, you make a text file or xml somewhere and read that file in your code. Whenever I do this, I write a service to do it for me. That way, the same service can be reused by other parts of the application.