how can i include jsp page in html?

2020-02-12 08:49发布

I am using Netbeans and MySql server. I want to add JSP content into an HTML file. How can I include it?

2条回答
Anthone
2楼-- · 2020-02-12 09:18

JSP is a dynamic one. It needs a web container to get executed. Why do you need to include it in a static html page. To my knowledge, if you want to include a jsp page in a html page, then your page is intended to be dynamic. So you have to change that to be a JSP page. Now you can use

<%@include file="includeable.jsp" %>

This will include your jsp.

You cannot include a JSP to a HTML page.

查看更多
老娘就宠你
3楼-- · 2020-02-12 09:27

Make the HTML file a JSP page, and use a JSP include (static or dynamic, depending on what you want, but you probably want a static include here):

<%@include file="theJspToInclude.jsp" %>

HTML files are static resources that are served as is, without any kind of interpretation, by the web container.

查看更多
登录 后发表回答