`
jingliankui123
  • 浏览: 104362 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论
文章列表
中间件jboss WebServcie包引用jboss下client里的jar包(D:\jboss-4.2.2.GA\client)   WSClient项目包引里的lib包. 自动生成web类 运行build.xml (点击build.xml 在outLine窗口里有一个Wsclinetge[defult]选上右键点出有一个run as ) outLine窗体就是显视类信息的窗口.   转http://blog.csdn.net/evan_endian/archive/2008/10/31/3196273.aspx 用教室里的jdk6访问jboss的webservice会出现 ...
里边有一个叫itcast-service.xml放到你的jboss下如(D:\jboss-4.2.2.GA\server\default\deploy) 里边有一个build.xml文件,这个文件一定要配置环境变量(JBOSS_HOME(D:\jboss-4.2.2.GA\))
<?xml version="1.0" encoding="UTF-8"?><datasources><!-- MYSQL -->  <local-tx-datasource>      <jndi-name>DefaultMySqlDs</jndi-name>      <connection-url>jdbc:mysql:localhost:3306/foshanshop?useUnicode=true&amp;characterEncoding=GBK< ...

email包和英文api

sdf

email发送邮件

package mail; import java.util.Properties; import javax.mail.Address;import javax.mail.Message;import javax.mail.NoSuchProviderException;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import javax.mail.internet.MimeMessage;import javax.mail.Session; public class Emails {    ...

jpa 所要的jar包

    博客分类:
  • jpa
jpa 所用的包,和一引依赖包.
 String uri = request.getRequestURI()+ (request.getQueryString() == null ? "" : "?"+ request.getQueryString()); 如果 http://localhost:8080/test/jing.jsp?method=1&heh=2  request.getRequestURI(): /test/jing.jsp   request.getQueryString() : method=1&heh=2      为了不让别人看出你的路 ...
把javarebel.jar和javarebel.lic放到你tomcat下bin包下 如(D:\tomcat\bin) 如何你用的是myeclipse的话 Windew->Preferences->MyEclipse->Servers->Tomcat->你所有的tomcat版本   选择jdk Optional java vm srguments -noverify -javaagent:D:\tomcat\bin\javarebel.jar  (在你tomcat下bin下)-Drebel.dirs=D:\work\JPATest\WebRoot\WEB ...
转http://news.newhua.com/news1/program_net/2009/824/09824152580F1DEG35AF458KKFC73F29192638HG2GAEFKFKDAG2CKD.html?lt=common Tomcat内存溢出的原因     在生产环境中tomcat内存设置不好很容易出现内存溢出。造成内存原因是不一样的,当然处理方式也不一样 ...

汉语转拼音

    博客分类:
  • java
//汉语转拼音的方法    protected String HanyuToPinyin(String name){      String pinyinName = "";            char[] nameChar = name.toCharArray();            HanyuPinyinOutputFormat defaultFormat =                                                new HanyuPinyinOutputFormat();            defaultFormat ...
  mysql 驱动包 版本 5.1.7   <?xml version="1.0"?><persistence xmlns="http://java.sun.com/xml/ns/persistence"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence           http://java.sun.com/ ...
xas 解析import java.io.FileInputStream; import java.io.FileNotFoundException;import java.io.IOException;   import java.io.InputStream;   import javax.xml.parsers.ParserConfigurationException;   import javax.xml.parsers.SAXParser;   import javax.xml.parsers.SAXParserFactory;   import org.x ...
转http://ben-hu.iteye.com/blog/538382 Action类 Struts 1要求Action类要扩展自一个抽象基类。Struts 1的一个共有的问题是面向抽象类编程而不是面向接口编程。 Struts 2的Action类实现了一个Action接口,连同其他接口一起实现可选择和自定义的服务。Struts 2提供一个名叫ActionSupport的基类实现一般使用的接口。虽然,Action接口不是必须的。任何使用execute方法的POJO对象可以被当作Struts 2的Action对象使用。 程模型 Struts 1 Action类是单例类,因只有一个示例控制所有的请 ...
写道 Unicode码的转换 //字符转Unicode编码值 public static String StringToUnicode(String str) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < str.length(); i++) { int temp = (int) str.charAt(i);// 获取字符的编码,但是十进制的 String hex = Integer.toHexString(temp);// 获得字符的16进制编码 while (hex.length() != 4) {//不足4位 ...
   一个url如 http://localhost:8090/test/test.jsp;    request.getContextPath();  /test   request.getScheme() ;        http    request.getServerName();  localhost    request.getServerPort();    8090    request.getServletPath();   test.jsp      在web编程时要用到一些相对路径(我用的是tomcat)    这个不需要启动tomcat直接在main方法 ...
Global site tag (gtag.js) - Google Analytics