简体   繁体   中英

In jsp directive

I need to include the following tag to my entire application JSP pages but is there any way we can include that in only one location and used in entire project.

Here is the tag;-

<%@ page contentType="text/html; charset=UTF-8" %>

Yes you can.

A solution is using tiles, so you can create structure:

https://tiles.apache.org/framework/tutorial/basic/pages.html

You can build a web page layout and put all your configuration like:

  • content type
  • link
  • link js

in one place, preferably into header section and display everytime a different body (another jsp).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM