码迷,mamicode.com
首页 > Web开发 > 详细

jsp获取properties配置文件中的属性值

时间:2018-01-24 19:40:30      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:实时   utf-8   coding   ons   属性   bundle   span   fun   poi   

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配置文件中的属性值

标签:实时   utf-8   coding   ons   属性   bundle   span   fun   poi   

原文地址:https://www.cnblogs.com/73tong/p/8342890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!