开始学习JavaEE。该项目在 IntelliJ IDEA on Maven、TomCat 9 中构建。
Ideshka 指出,她没有找到用于 out 的 println 方法。打包后 - 代码完成。但我不知道它有多正确——它没有换行,即 从语法来看,它应该在新行上显示每个条目(数字) - 但它通过空格输出。
如何确保 Ide 知道 out 方法并且一切正常?
起居室:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>servlet</groupId>
<artifactId>HelloWorld</artifactId>
<version>0.1</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>servlet-api</artifactId>
<version>6.0.53</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
</plugin>
</plugins>
</build>
index.jsp:
<%@ page import="java.util.Date" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello JSP</title>
</head>
<body>
<h1.>Testing JSP</h1>
<p>
<%
Date now = new Date();
String dateNow = "Time is: " + now;
%>
<%= "Hello World!" %>
<%= dateNow %>
</p>
<p>
<%
for (int i =0; i < 10; i++) {
out.println(i);
}
%>
</p>
感谢您的许多回答和投票。在搜索了一阵子之后,萌生了爬上安装的tomcat的库的想法,找到了我需要的东西。为了让 IDEshka 不抱怨该方法,您需要包含依赖项:
奇怪的是 out 有 print 和 println 方法,但是 println 不会在新行上输出。找到了将每个输出包装在一个段落中的建议: