约 60 个结果
在新选项卡中打开链接
  1. 有大佬讲解一下jsp到底是什么吗? - 知乎

    JSP(Java Server Pages)是一种动态网页开发技术,它是在传统的 HTML 网页中嵌入 Java 代码来实现动态内容展示的。通过 JSP 技术,可以在服务器端生成动态的 HTML、XML 或其他格式的页面,实 …

  2. What does the dollar curly brackets $ {} mean in JSP?

    2022年12月24日 · The dollar curly brackets ${} in JSP are used for expression language (EL) to simplify accessing data stored in JavaBeans, maps, or arrays.

  3. java现在不用jsp了吗?那不用jsp了是用什么代替jsp的? - 知乎

    其实我在18年的时候已经见过类似的问题了「JSP还应该学习吗」。 我在18年发了几篇JSP的文章,已经有不少的开发者评论『这不是上个世纪的东西了吗』『梦回几年前』『这么老的的东西,怎么还有人 …

  4. 什么是JSP技术? - 知乎

    什么是JSP JSP全名为Java Server Pages,java服务器页面。JSP是一种基于文本的程序, 其特点就是HTML和Java代码共同存在! 为什么需要JSP JSP是为了简化Servlet的工作出现的替代品,Servlet …

  5. What is the difference between JSF, Servlet and JSP?

    2020年5月25日 · 1290 JSP (JavaServer Pages) JSP is a Java view technology running on the server machine which allows you to write template text in client side languages (like HTML, CSS, …

  6. JSP是什么?有什么特点? - 知乎

    JSP 今日目标: 理解 JSP 及 JSP 原理 能在 JSP中使用 EL表达式 和 JSTL标签 1,JSP 概述 JSP(全称:Java Server Pages):Java 服务端页面。 是一种动态的网页技术,其中既可以定义 HTML、JS …

  7. java - How does jsp work? - Stack Overflow

    Then, this servlet checks if the JSP is already compiled. If the JSP is not compiled yet, the JSP servlet translates the JSP to some Java source code implementing the Servlet interface. Then it compiles …

  8. if statement - if...else within JSP or JSTL - Stack Overflow

    2019年7月13日 · Discover how to use if-else statements within JSP or JSTL effectively with examples and expert advice from the Stack Overflow community.

  9. Difference between jsp expression tags <% and - Stack Overflow

    Difference between jsp expression tags <% and <%= Asked 12 years, 8 months ago Modified 3 years, 11 months ago Viewed 84k times

  10. How to output HTML from JSP <%! ... %> block? - Stack Overflow

    The JSP page gets translated by your webserver into a Java servlet. Inside tomcats, for instance, everything inside scriptlets (which start "<%"), along with all the static HTML, gets translated into one …