jsp獲取properties配置文件中的屬性值
阿新 • • 發佈:2018-01-24
lan app jstl ati prefix nco string lib cor
jsp頁面
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%
// properties 配置文件名稱
ResourceBundle res = ResourceBundle.getBundle("application");
%>
//獲取properties配置文件中的屬性值
var getDataJsonFreq= <%=res.getString("getDataJsonFreq")%>;
var showAllPointFreq= <%=res.getString("showAllPointFreq")%>;
properties配置文件
##獲取實時數據頻率(1000=1秒)
getDataJsonFreq = 1000;
##頁面刷新頻率(1000=1秒)
showAllPointFreq = 1000;
jsp獲取properties配置文件中的屬性值