欢迎来到天天文库
浏览记录
ID:30369777
大小:71.54 KB
页数:4页
时间:2018-12-29
《《在jsf中使用》word版》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、在JSF中使用properties文件1.创建一个properties文件.文件名为MyMessages.properties可以放在任意位置,比如放在:com.abc.messages包中2.在properties文件中添加内容.内容格式为:变量名=值如在MyMessages.properties中添加title=我的主页3.在faces-config.xml中配置.com.abc.messages.MyMessages<
2、/application>4.在JSF页面中使用.先在JSF页面中绑定刚才写的MyMessages.properties文件5.JSF使用 一个完整的例子:1.MyMessages.properties文件代码如下:title=我的主页2.faces-config.xml文件内容如下:3、"http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd" version="1.2"> 4、pplication> com.chengyi.common.Messages 3.JSF页面代码如下:<%@pagelanguage="java"pageEncoding="GB18030"%><%@tagliburi="http://java.sun.com/jsf/html"prefix="h"%><%@tagliburi="http://java.sun.com/jsf/co5、re"prefix="f"%>
3、"http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd" version="1.2"> 4、pplication> com.chengyi.common.Messages 3.JSF页面代码如下:<%@pagelanguage="java"pageEncoding="GB18030"%><%@tagliburi="http://java.sun.com/jsf/html"prefix="h"%><%@tagliburi="http://java.sun.com/jsf/co5、re"prefix="f"%>
4、pplication> com.chengyi.common.Messages 3.JSF页面代码如下:<%@pagelanguage="java"pageEncoding="GB18030"%><%@tagliburi="http://java.sun.com/jsf/html"prefix="h"%><%@tagliburi="http://java.sun.com/jsf/co
5、re"prefix="f"%>
此文档下载收益归作者所有