Java Servlets - Storing a list of values in web.xml (multiple param-value's for single param-name)

后端 未结 4 1944
暗喜
暗喜 2021-02-01 02:41

I\'m creating a servlet that needs to load configuration information. Part of the configuration information I need is a list of Strings (specifically, a list of hostnames and/or

4条回答
  •  礼貌的吻别
    2021-02-01 03:27

    Servlet spec says that you can have only one value for any context parameter. So, you are left with going with delimited list only.

    
      validHosts
      example1.com,example2.com,.....
    
    

提交回复
热议问题