#
在jdk的bin目录如:D:\j2sdk1.4.2\bin>
在cmd模式下键入:
D:\j2sdk1.4.2\bin>native2ascii
然后打汉字,回车就会出现unicode的编码了
官方主页
http://java.sun.com/j2ee/javaserverfaces/
http://www.jcp.org/en/jsr/detail?id=127
JavaServer Faces Specification 1.0 Final
http://192.18.97.251/ECom/EComTi ... jsf-1_0-fr-spec.pdf
JavaServer Faces RI 1.0 Final
http://192.18.97.252/ECom/EComTi ... h-JPR:1/jsf-1_0.zip
JavaServer Faces API
http://192.18.97.252/ECom/EComTi ... fr-spec-apidocs.zip
让你的JSP/Servlet引擎支持JSF
1、下载JavaServer Faces RI 1.0 Final ,并解开jsf-1_0.zip
2、将build.properties.sample改名为build.properties,并根据容器的位置做相应的配置。
主要是以下代码
tomcat.home=<path to JWSDP installation>
Tomcat的目录位置
jsf-api.jar=${tomcat.home}/jsf/lib/jsf-api.jar
jsf-impl.jar=${tomcat.home}/jsf/lib/jsf-impl.jar
commons-logging.jar=${tomcat.home}/jsf/lib/commons-logging.jar
commons-digester.jar=${tomcat.home}/jsf/lib/commons-digester.jar
commons-beanutils.jar=${tomcat.home}/jsf/lib/commons-beanutils.jar
commons-collections.jar=${tomcat.home}/jsf/lib/commons-collections.jar
在jsf-1_0.zip里
jstl.jar=${tomcat.home}/jstl/lib/jstl.jar
standard.jar=${tomcat.home}/jstl/lib/standard.jar
在http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
如果你使用JSP 2.0,就使用JSTL 1.1
如果你使用JSP 1.X,就使用JSTL 1.0.X
servlet.jar=${tomcat.home}/common/lib/servlet-api.jar
jsp.jar=${tomcat.home}/common/lib/jsp-api.jar
在http://jakarta.apache.org/tomcat/
build.standalone=true
JSF书籍:
Mastering JavaServer Faces
http://www.amazon.com/exec/obidos/ASIN/0471462071/jamesholmes-20
by Bill Dudney, Jonathan Lehr, Bill WillisWiley, January 2004
JavaServer Faces
http://www.amazon.com/exec/obidos/ASIN/0596005393/jamesholmes-20
by Hans BergstenO'Reilly, January 2004
JavaServer Faces in Action
http://www.amazon.com/exec/obidos/ASIN/1932394125/jamesholmes-20
by Kito D. MannManning, May 2004
JavaServer Faces Kickstart
http://www.amazon.com/exec/obidos/ASIN/0672325993/jamesholmes-20
by James Turner, Craig McClanahanSams, May 2004
Core Java Server Faces http://www.amazon.com/exec/obidos/ASIN/0131463055/jamesholmes-20
by David Geary & Cay S. HorstmannSun Microsystems Press, June 2004
支持JSF的开发工具:
Faces Console
http://www.jamesholmes.com/JavaServerFaces/console/
The Faces Console is a FREE standalone Java Swing application for visually editing JavaServer Faces config files.可以做为JBuilder的Opentools
JSF FormBuilder
http://piet.jonas.com/FormBuilder/JsfFormBuilder.html
JSF FormBuilder is a free Java Swing application for creating forms for Java Server Faces (JSF).
JSF Studio
http://www.exadel.com/products_jsfstudio.htmA Web Integrated Development Environment (WIDE) for Sun's JavaServer Faces (JSF).
IBM WebSphere Studio Application Developer
http://www-306.ibm.com/software/awdtools/studioappdev/
IBM has added preliminary support for JavaServer Faces as of version 5.1.1.IBM WebSphere 开发者技术期刊:运用 WebSphere Studio V5.1.1 开发 JSF 应用程序 -- 第 1 部分
http://www-900.ibm.com/developer ... barcia/barcia.shtml
Oracle JDeveloper 9.0.5
http://otn.oracle.com/products/jdev/htdocs/905/adffaq_otn.html
Oracle is adding support for Java Server Faces in JDeveloper 9.0.5 with their Application Development Framework (ADF).
SoftAspects' WebGalileo Faces Components & Designer
http://www.softaspects.com/
A set of Faces components and a Faces rapid application development tool.
Sun Java Studio Creator (aka Project Rave)http://wwws.sun.com/software/products/jscreator/index.html
Sun's new IDE aimed at simplifying web development via Java Server Faces.
WebFaces
http://www.kobrix.com:8080/ticl/webfaces.jsp
WebFaces is a visual RAD tool to speed even further web application development.
出处:
http://bbs.itepub.net/viewthread.php?tid=106139
在java开发中,经常要引用到另一路径的包。可先把总路径打成一个jar包,再放在classpath中,就可编译了。
jar cvf mybean.jar cn
mybean.jar=文件名
cn=总路径 下面可能有路径a1,a2,a3等。
Question: Why do I get errors when using the book's build instructions with Tomcat 5.5.x?
Answer: Unlike Tomcat 5.0.x, Tomcat 5.5.x doesn't have the commons-digester.jar and commons-beanutils.jar in the tomcat/server/lib directory. Instead, these files need to be obtained from jsf/lib.
In step 4 of the instructions on page 11, change
comcat/server/lib/commons-digester.jar
tomcat/server/lib/commons-beanutils.jar
to
jsf/lib/commons-digester.jar
jsf/lib/commons-beanutils.jar
jsf/lib/commons-collections.jar
web.xml 文件
<?xml version="1.0"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
</web-app>
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///test</property>
<property name="hibernate.connection.username">username</property>
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.pool_size">100</property>
<property name="show_sql">false</property>
<property name="dialect"> org.hibernate.dialect.MySQLDialect</property>
<!-- Mapping files -->
<mapping resource="Train.hbm.xml"/>
</session-factory>
</hibernate-configuration>
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<!-- DO NOT EDIT: This is a generated file that is synchronized -->
<!-- by MyEclipse Hibernate tool integration. -->
<hibernate-configuration>
<session-factory>
<!-- properties -->
<property name="connection.username">username</property>
<property name="connection.url">jdbc:microsoft:sqlserver://localhost:1433;databaseName=test</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="connection.password">password</property>
<property name="connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriver</property>
<!-- mapping files -->
<mapping resource="Train.hbm.xml"/>
</session-factory>
</hibernate-configuration>
1.配置成首页的问题
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="localhost_log." suffix=".txt"
timestamp="true"/>
这里增加:
<Context path="" docBase="C:/Tomcat/webapps/myweb" debug="0" reloadable="true" crossContext="true"/>
要说的是myweb/web-inf/web.xml的文件最好改下名,我的从weblogic转过来,看了很多论坛,因为这里没改名,一直错误,还不知道怎回事,改了名就好了,该是冲突问题。
2. 乱码问题
如果你没有乱码,不用看,有了乱码,你就成乱麻,总得要解决,现在论坛有说这,有说那,只要解决了你的难题的,就是好方案。
我的问题时,从数据库中读出没乱码,写入出现乱码,我的方案是:
(1).在filters中做个SetCharacterEncodingFilter.java的bean文件。
package filters;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.UnavailableException;
public class SetCharacterEncodingFilter implements Filter{
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {
// Conditionally select and set the character encoding to be used
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
// Pass control on to the next filter
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
this.ignore = true;
else if (value.equalsIgnoreCase("true"))
this.ignore = true;
else if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
编译上段代码时,要在classpath中注册servlet.jar文件。
(2).在web.xml中引入:
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>GBK</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
(3)在server.xml中修改
port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" URIEncoding="ISO-8859-1" />
有种说法是把URIEncoding="ISO-8859-1"可换成URIEncoding="GBK",自己测试,对的就是硬道理。
最后顺便说下mysql-connector-java-5.0.3-bin.jar的jdbc连接代码,与以前低版本的不一样。
String sDBDriver="com.mysql.jdbc.Driver";
String sConnStr="jdbc:mysql://localhost:3306/gain?user=root&password=password";
[源创]
今天忙里偷闲,把sqlserver2000升级为sqlserver2005,为了安全性,也为了微软的男人这几年不白忙乎了,呵呵。
主要有6个问题:
1. jdbc的问题。
sql2000的jdbc有三个文件msmbase.jar,mssqlserver.jar,msutil.jar;sql2005的jdbc只有一个文件sqljdbc.jar。随着sql的升级,相应得jdbc也要改变,不然,呵呵,是连不上的,出现“数据流dts连接rpc协议”之类的错误。jdbc下载地址:http://www.microsoft.com/china/sql/downloads/jdbc.mspx
其他信息:http://download.microsoft.com/download/0/9/0/09020fab-d2c3-4a8c-b9e0-db53a7a30ae8/ReadmeSQLEXP2005.htm
2. Driver和Conn的问题。
sql2000的Driver和Conn为:
String sDBDriver="com.microsoft.jdbc.sqlserver.SQLServerDriver";
String sConnStr="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db";
sql2005的Driver和Conn为:
String sDBDriver="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String sConnStr="jdbc:sqlserver://localhost:1433;DatabaseName=db";
大家要仔细看明白了,别把日立的男人和微软的男人搞混。
3. 1433端口打开的问题。
打开sql server配置管理器,sql server 2005 网络配置-〉MSSQLSERVER的协议,TCP/IP已禁用改为已启用。
4. 服务器身份验证的问题。
打开Microsoft SQL Server Management Studio,右击服务器名字-〉属性-〉安全性-〉改为SQL Server和Windows身份验证模式(这个我在Management Studio中找了半天)。
5. sql2000->sql2005数据迁移问题。
把sql2000的数据备份好,在sql2005中建个一样名字的数据库,右击该数据库-〉任务-〉还原-〉数据库,选上,还原,会出现错误,单击选项,在覆盖现有数据库前打钩,确定,OK。
6. 用户删除问题。
有时用户无法删除,主要是在架构中有该用户存在,先把架构中的用户删掉,再在用户中就可删掉该用户了。
好了,我也--松下--了。呵呵,轻松一下。
平时,我们偶尔会遇到系统启动时显示“NTLDR is missing”而无法进入系统的情况。其实导致该故障的原因多,但网上绝大部分文章都只针对一种情况进行讨论。下面笔者将各种情况和原因进行汇总,希望对大家有所帮助。
一、NTLDR损坏或丢失
这种情况解决起来比较简单,而且比较常见,所以也是我们遇到该故障时首先采取的一种方法,即在Recovery Console或其他系统下,把系统的安装光盘中i386目录下的NTLDR文件复制到系统分区(通常为C盘)中即可。
二、NTLDR没有损坏或丢失
如果把光盘中的NTLDR文件复制到C盘后重新启动,问题依然没有解决,这时我们可以认识到,导致该故障的不是NTLDR损坏或丢失,而是系统视而不见。为什么会这样呢?一般说来,导致该现象的原因有以下几点:
1、采用非系统磁盘来启动电脑。如果用一些非系统磁盘引导启动电脑,比如软盘、光盘、USB移动存储设备等,就可能会出现此问题。解决的方法是取出这些设备,然后重新启动电脑即可。
2、BIOS中硬盘中的信息被更改,检测方式被设置为手动。
由于硬盘信息被篡改,导致系统找不到硬盘中的系统分区,所以就找不到系统分区中的启动文件NTLDR了。只要在BIOS的“Standard CMOS Setup”中,把硬盘检测方式设置为“Auto(自动)”即可。
3、系统分区没有被激活。如果用于存放启动文件(包括BOOT.INI、NTLDR、NTDETECT.COM)的系统分区没有被激活而是激活了其他主分区,那么就会导致系统启动时找不到NTLDR文件。解决的方法时用Windows 98启动盘启动电脑,然后运行Fdisk,选择“Set active partition”来激活系统分区。如果仍无法解决,就需要在Recovery Console下运行FIXBOOT命令来使活动分区成为可启动的分区。
4、硬盘中的主引导记录(MBR)被破坏,导致系统找不到系统分区。解决的方法是在Recovery Console下运行fixmbr命令,或者是用Windows 98启动盘启动电脑,然后运行FDISK /MBR。
5、系统分区的MFT根文件夹碎片较多。主文件表(MFT)是一个卷上每一个文件的索引,如果 MFT 根文件夹包含多个文件,则MFT就会变得非常零碎,以至于需要另外创建一个分配索引。因为文件是按字母顺序映射到分配索引中的,NTLDR 文件可能会被推到第二个分配索引中。一般情况下不建议用户将文件直接写入根文件夹,尤其是大量文件。如果有某个程序定期在系统分区的根文件夹中创建和删除临时文件,或者将许多文件误复制到根文件夹,就会造成这一情况。但是,请神容易送神难,如果我们此时去删除那些临时文件或是复制到根文件夹的文件,主文件表(MFT)分配索引并不会降到原来的大小,所以故障依然存在。
这时候我们需要使用微软提供的一个叫bcupdate2的工具(下载地址:
http://www.poseidon.org.uk/bcupdate2.exe)来强制更新启动代码(Boot Code)。使用方法是在其他硬盘的系统上,运行 bcupdate2 x: /f (x:代表需要修复的硬盘的系统分区),然后按“Y”确认更新启动代码即可。
6、安装了EZ-BIOS。EZ-BIOS是西部数据公司提供的一个可以通过重写分区列表来允许用户创建比 Windows 95 或 Windows 98 支持的分区更大的工具。如果安装了EZ-BIOS,那么在使用Windows 95或Windows 98升级到Windows 2000 或 Windows NT 4.0期间就会出现该故障。解决的方法是卸载EZ-BIOS。
7、BIOS过时。如果主板上的BIOS程序过时,可能会导致该故障,解决的方法是升级BIOS程序。
8、FAT32 BIOS Parameter Block (BPB) 中存在无效头(边)值。如果把一个硬盘上的系统(包括Windows 95、Windows 98 或 Windows Me)做了镜像后克隆到其他不同大小的硬盘上,然后使用这个克隆系统升级到Windows 2000或Windows XP时,就会出现在复制文件后重新启动提示“NTLDR is missing”。因为Windows 95、Windows 98 或者 Windows Me 启动代码忽略 BPB 中的头值,并且即使在值无效时仍启动程序。但是,Windows 2000 和 Windows XP 中的启动代码需要这个值,如果此值无效则启动过程不会成功。这种情况解决方法比较复杂:
step1:使用包含 Sys.com的 Windows 95、Windows 98 或者 Windows Me 启动盘来重新启动电脑。
step2:运行以下命令,在系统分区的根目录下备份msdos.sys文件:
attrib -h -r -s c:\msdos.sys
rename msdos.sys *.ysy
step3:在命令提示符中,输入 sys c:。此命令用正确的 BPB 信息重写 Windows 95、Windows 98 或者 Windows Me 启动代码。
step4:在Recovery Console下运行fixboot命令重写Windows 2000或Windows XP的启动代码。
按照以上操作后,一般可以使原来的安装程序继续进行。
总结:以上列举的故障现象及其原因都是按照由易到难,由常见到少见来排列的。大家在遇到此故障时,可以按照本文的顺序,进行故障排除。
eclipse连接mysql出现如下错误:
Error while trying to login to database : com.mysql.jdbc.Driver
解决办法:
窗口->首选项->MyEclipse->Database Explorer->Drivers->add
Name:MySqlJDBC
Example URL:org.gjt.mm.mysql.Driver
Driver Libraries:C:\eclipse\workspace\test\lib\mysql-connector-java-3.0.17-ga-bin.jar
按“确定”。
窗口->打开透视图->其他->MyEclipse Database Explorer
左窗口按右键->new
Driver选MySqlJDBC即可解决。