JSP中的$ Blah $是什么意思?

时间:2022-02-17 18:53:31

I am using Intellij to generate jsp, and I saw there is some token like

我正在使用Intellij生成jsp,我看到有一些令牌

<title>$Title$</title>

My question is what does $TITLE$ mean here? Is this a variable?

我的问题是$ TITLE $在这里意味着什么?这是变量吗?

How to set it?

怎么设置呢?

1 个解决方案

#1


1  

Since Intellij IDE generated the JSP and tool doesn't know what title need to be used for your JSP. So Intellij provided some temporary value.

由于Intellij IDE生成了JSP,因此工具不知道需要为JSP使用什么标题。所以Intellij提供了一些临时价值。

After generating JSP, replace with required value (i.e JSP title)

生成JSP后,替换为所需的值(即JSP标题)

Example:

<title>My First JSP</title>

#1


1  

Since Intellij IDE generated the JSP and tool doesn't know what title need to be used for your JSP. So Intellij provided some temporary value.

由于Intellij IDE生成了JSP,因此工具不知道需要为JSP使用什么标题。所以Intellij提供了一些临时价值。

After generating JSP, replace with required value (i.e JSP title)

生成JSP后,替换为所需的值(即JSP标题)

Example:

<title>My First JSP</title>