为啥intellij idea不能显示错误信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥intellij idea不能显示错误信息相关的知识,希望对你有一定的参考价值。

(适用Idea 14 & 15,其他版本未知)

前几天遇到一个问题,Idea里代码拼写错误后,居然没有任何提示,检查了设置
这里写图片描述
Preferences->Editor->Inspections->Spelling->typo(或者直接搜typo或spelling)
显然是打开的。
Preferences->Editor->Spelling下的字典也并没有这个词。

于是考虑是不是高亮的Scheme的问题,如下果然需要配置的。
这里写图片描述
Perferences->Editor->Colors & Fonts->General->Typo
在右边的Effects打钩, 然后选Underwaved做下划线,框内选颜色(我选的白色)做下划线颜色。

done.
参考技术A 默认情况下,我们输入代码时IDEA会自动...
1

如果我们想主动 使用代码提示时,默认...
2

我们在左侧菜单选择KeyMap,然后按照图...
3

在Cyclic Expand Word上点击右键,移除...
4

Basic就是代码提示功能的选项了,我们...
5

在这个界面,我们按下的键就会成为快捷...
6

添加完之后代码提示有了两个快捷键了,本回答被提问者采纳
参考技术B View-->Tool Windows-->Logcat 点击一下就可以了

为啥我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制]

【中文标题】为啥我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制]【英文标题】:Why i am getting 404 found error in JSP&servlets in IntelliJ IDEA Ultimate 2020.2? [duplicate]为什么我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制] 【发布时间】:2021-02-06 15:58:42 【问题描述】:

我正在 IntelliJ IDEA Ultimate 2020.2 中的 jsp 和 servlet 中创建简单的登录 Web 应用程序。

以下是我的index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Calculator</title>
</head>
<body>
<form method="post" action="/LoginServlet">
    UerName:<input type="text" name="t1"><br>
    Password:<input type="text" name="t2"><br>
    <input type="submit" value="Ok"><br>
</form>
</body>
</html>

这是我的 servlet。它位于 src->main->java->francis

@WebServlet(name = "LoginServlet")
public class LoginServlet extends HttpServlet 
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException 
        PrintWriter out = response.getWriter();
        out.println("Welcome.....");
    

Web.xml 是

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <servlet>
        <servlet-name>LoginServlet</servlet-name>
        <servlet-class>francis.LoginServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>LoginServlet</servlet-name>
        <url-pattern>/LoginServlet</url-pattern>
    </servlet-mapping>

</web-app>

但是输出屏幕是...

请帮助我。提前致谢

【问题讨论】:

直接访问localhost会得到什么? 第一页 index.jsp 运行,当我点击添加按钮时,上面的输出来了 ***.com/a/42688676/104891 有帮助吗? 是的。谢谢。但在我的情况下,给定的配置是正确的。 【参考方案1】:

替换

<form method="post" action="/LoginServlet">

<form method="post" action="LoginServlet">

它会被自动翻译成the-context-path/LoginServlet。请注意,您放入action 属性的路径是相对于上下文路径的。

【讨论】:

以上是关于为啥intellij idea不能显示错误信息的主要内容,如果未能解决你的问题,请参考以下文章

IntelliJ IDEA 和 Gradle - 不能应用于“(groovy.lang.Closure)”

intellij idea spring的错误日志在tomcat localhost log里面去了,日志用的logback;

IntelliJ IDEA 显示 matHeaderRowDef 错误

idea里面html保存不了,intellij idea 不能保存项目,报错解决办法

IntelliJ idea设置显示错误代码提示

IntelliJ idea的maven工程老是提示:Cannot Resolve Symbol ......