1. 程式人生 > >jsp獲取properties中的資料-fmt標籤

jsp獲取properties中的資料-fmt標籤

fmt標籤的使用

首先要在jsp中引入標籤庫:引入方法為<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>

其次引入標籤

<fmt:setBundle basename="test" var="paramInfo" /> <fmt:message key="test.login.account.locked.number" var="lockedNumber" bundle="${paramInfo}" />

首先標籤<fmt:setBundle>標籤用於指定引入哪個properties的資訊。這裡要引入的是test.properties配置檔案的資訊。var用來定義引數名。

在<fmt:message>標籤中,通過bundle引入在<fmt:setBundle>設定的引數,通過引用<fmt:setBundle>的var值來定義。標籤中的key值為引用的properties中引數的key值,var值定義了當前獲取到的properties引數名,可以在jsp中通過EL表示式引用。

引用示例:<c:if test="${lockedNumber}">

這裡同時使用了<c:if>標籤,用於條件判斷

國際化

專案中使用了<spring:message>標籤來做的國際化。

主要是引入標籤庫:<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>

和引入bean(ResourceBundleMessageSource)

本人前端操作一般般,很多標籤都要研究一下才用得起來,所以還是記下來。