The field HttpServlet.lStrings is not visible

发布于 2022-09-01 06:25:25 字数 1050 浏览 10 评论 0

最近刚刚开始学习java web 在如下代码的时候提示出了这个错误,我ctrl+shift+o也木有用!代码是书上抄的。求各位java同学解释下。
clipboard.png

package chapter4;


import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class MethodTest extends HttpServlet {
    @Override
    protected void service(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException
    {
        String method = req.getMethod();
        PrintWriter out=resp.getWriter();
        //out.println(method);
        if(method.equals("GET"))
        {
            doGet(req,resp);
        }
        else if(method.equals("POST"))
        {
            doPost(req,resp);
        }
        else
        {
            String errMsg=lStrings.getString("http.method_not_implemented");
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最丧也最甜 2022-09-08 06:25:25

lStrings是HttpServlet类下面的一个private属性,无法被子类调用,关于private,protected,(default),public的知识,请参考Thinking in Java中的Access Control一章。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文