問題詳情

42 You have built a web application that you license to small businesses. The webapp uses acontext parameter, called licenseExtension, which enables certain advanced features based on yourclient's license package.When a client pays for a specific service, you provide them with a license extension key that theyinsert into the <context-param> of the deployment descriptor. Not every client will have this contextparameter so you need to create a context listener to set up a default value in the licenseExtensionparameter.Which code snippet will accomplish this goal?
(A) You cannot do this because context parameters CANNOT be altered programmatically.
(B) String ext = context.getParameter('licenseExtension');if ( ext == null ) {context.setParameter('licenseExtension' DEFAULT);}
(C) String ext = context.getAttribute('licenseExtension');if ( ext == null ) {context.setAttribute('licenseExtension' DEFAULT);}
(D) String ext = context.getInitParameter('licenseExtension')if ( ext == null ) {context.resetInitParameter('licenseExtension' DEFAULT);}
(E) String ext = context.getInitParameter('licenseExtension')if ( ext == null ) {context.setInitParameter('licenseExtension' DEFAULT);}

參考答案

無參考答案

內容推薦