是這樣的我要做好幾個jsp頁面,都使用bootstrap作為前端框架
於是在每個jsp頁面的 head>中都有這麼一大段加載命令:
<link href="css/charisma-app.css" rel="stylesheet">
<link href='bower_components/fullcalendar/dist/fullcalendar.css' rel='stylesheet'>
<link href='bower_components/fullcalendar/dist/fullcalendar.print.css' rel='stylesheet' media='print'>
<link href='resources/bower_components/chosen/chosen.min.css' rel='stylesheet'>
<link href='bower_components/colorbox/example3/colorbox.css' rel='stylesheet'>
<link href='bower_components/responsive-tables/responsive-tables.css' rel='stylesheet'>
<link href='bower_components/bootstrap-tour/build/css/bootstrap-tour.min.css' rel='stylesheet'>
<link href='css/jquery.noty.css' rel='stylesheet'>
<link href='css/noty_theme_default.css' rel='stylesheet'>
<link href='css/elfinder.min.css' rel='stylesheet'>
<link href='css/elfinder.theme.css' rel='stylesheet'>
<link href='jquery.iphone.toggle.css' rel='stylesheet'>
<link href='uploadify.css' rel='stylesheet'>
<link href='css/animate.min.css' rel='stylesheet'>
這樣修改起來不方便,如果把這些相同的標簽都單獨列出來放在一個jsp頁面中就會好很多。
我應該怎樣做,新建的這個jsp頁面要聲明什麼嗎,其他引用該頁面的jsp要聲明什麼,就是如何把它們聯系起來
把公共的提取出來,放到common.jsp中,通過@include的方式引入其他頁面
<%@include file="common.jsp" %>