英文:
JSP is not showing in eclipse wizard
问题
我在Eclipse中创建新项目时,即使已添加了Web依赖项,仍然找不到JSP页面。
有人可以帮我了解如何在我的程序中使用JSP页面吗?
我不知道问题是依赖项还是新的Eclipse版本。
英文:
I am unable to find the JSP page in Eclipse while creating a new project even when I have added the web dependency.
Can anyone help me how can I use the JSP pages for my program?
I don't know whether the problem is with the dependencies or with the new Eclipse version.
答案1
得分: 3
以下是您要翻译的内容:
在Eclipse中创建新的动态Web项目时,您需要在所需的文件夹(如WebContent、WEB-INF等)中创建一个JSP文件,您希望将JSP页面存放在其中,或者甚至可以创建一个名为**"jsp"**的文件夹,并将所有JSP文件放在该文件夹中。
您可以通过选择项目位置,然后点击
新建 -> 文件 -> 输入文件名(例如:login.jsp) -> 回车。
这将为您创建一个JSP文件。
附上“动态Web项目”的快照示例:
附上在Eclipse中创建新JSP文件的快照示例:
英文:
When you create a new Dynamic Web project in eclipse, You need to create a JSP file in your desired folder like WebContent, WEB-INF etc where you want to keep your JSP page, or even you can create a folder named "jsp" and put all JSP files inside that folder.
You can do this by selecting the project location and clicking on
New -> File -> Give the filename (ex : login.jsp) -> enter.
This will create a JSP file for you.
Attaching snapshot for "Dynamic Web Project"
Attaching snapshot for creating new JSP file in Eclipse :
答案2
得分: 2
你需要使用(下载)适用于Java EE开发人员的Eclipse IDE。然后在Eclipse中创建一个类型为Dynamic Web Project的新项目。然后在该项目的webcontent文件夹中添加一个类型为JSP的文件(新建 -> 文件)。
英文:
You need to use(download) Eclipse IDE for Java EE Developers. Then create create a new project of type Dynamic Web Project in eclipse. Then Add file (new->file) of type JSP on that project in webcontent folder.
答案3
得分: 2
- 帮助/安装新软件
- 如果不存在,添加仓库(http://download.eclipse.org/releases/mars)。
- 在(Web、XML、Java、EE 和 OSGI 企业开发)下
- 选择:Eclipse Java EE 开发工具
- 选择:Eclipse Java Web 开发工具
- 选择:Eclipse Web 开发工具
- 重启 Eclipse。
英文:
- Help/Install new Software
- Add repository (http://download.eclipse.org/releases/mars) if not available.
- Under (Web,XML,Java, EE and OSGI Enterprise Development)
- Select: Eclipse Java EE Developer Tools
- Select: Eclipse Java Web Developer Tools
- Select: Eclipse Web Developer Tools
- Restart Eclipse.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论