jsp getServletContext() error

后端 未结 1 978
我寻月下人不归
我寻月下人不归 2021-01-03 02:52

html


<         


        
1条回答
  •  再見小時候
    2021-01-03 03:13

    JSPs in Weblogic behaves differently from Tomcat with respect to getServletContext

    Replace ServletContext sc = this.getServletContext();

    to ServletContext sc = getServletConfig().getServletContext();

    0 讨论(0)
提交回复
热议问题