`
kong6001
  • 浏览: 142140 次
  • 性别: Icon_minigender_1
  • 来自: 广东广州
社区版块
存档分类
最新评论
文章列表
 越来越觉的JRuby是个很有前途的项目,结合Ruby的性感语法和java极其丰富的类库,况且有团队持续不断地修正bug、改进性能,这样的玩意完全有成为“少男杀手”的潜质。JRuby wiki上列出了性能优化的四条建议:1、调优编译器,JRuby早就弃暗投明跟随XRuby走上了编译这条牛B的道路,将Ruby Script编译成字节码,因此这个环节是断断不能忽略的。两种编译方式:AOT模式:直接生成class文件,脱了Ruby这层皮,咱就是人见人“爱”的java了。JIT模式:充分利用成熟的jit技术,咱不全脱,朦胧美才是真的美。默认从0.9.9版本开始就是开启的,关闭的话(要我说还不如全脱) j ...
Linux 使用localhost访问glassfish ,回复404   修改config/domain.xml <virtual-server hosts="${com.sun.aas.hostName}"..... 添加localhost <virtual-server hosts="${com.sun.aas.hostName},localhost"  
<style type="text/css"> <!-- .readonly { background-color:expression(readOnly?'#ccc':'#fff'); } --> </style> <script>     设定表单的calss 为readonly

PersistJS

PersistJS: Cross Browser Client-Side Persistent Storage Without Cookies http://pablotron.org/?cid=1557  
Looks to me like multicast isn't enabled properly. First, check using "ifconfig -a" that multicast is enabled on your network interfaces. eth0 Link encap:Ethernet HWaddr 00:E0:81:51:41:39 inet addr:192.168.0.6 Bcast:192.168.255.255 Mask:255.255.0.0 UP BROADCAST RUNNING MULTICAST MTU:1500 ...
public class CompressImage { private static final Log log = LogFactory.getLog(CompressImage.class); private int destWidth;// 压缩后的长 private int destHeight;// 压缩后的高 /** * 指定压缩后的长度,按比例计算出压缩后的高度 * * @param width */ public CompressImage(int width) { this.destWidth = width; } /** * ...
1、配置数据源文件 数据源必需以 **-ds.xml作为文件名,并放在server\default\deploy下,不同数据库配置不同,可参考\docs\examples\jca下的数据源配置 下面配置多个数据源例子: <?xml version="1.0" encoding="GBK"?> <!-- ===================================================================== --> <!-- ...
SQL to Select a random row from a database table 来源: http://www.petefreitag.com/item/466.cfm There are lots of ways to select a random record or row from a database table. Here are some example SQL statements that don't require additional application logic, but each database server requires differen ...
Spring 配置数据源JNDI引用 <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"><value>java:comp/env/jdbc/aurora_contact_web</value></property> </bean> 或者 <jee:jn ...
EJB所有返回值必须实现 Serializable接口,否则会报些莫名其妙的错误. 并把 Glassfish 的 appserv-rt.jar 和 javaee.jar 包 客户程序的类路径 @Stateless(mappedName="ejb/MainActionJNDI")//远程JNDI @Name("MainAction") @Interceptors({org.jboss.seam.ejb.SeamInterceptor.class}) @AutoCreate public class MainActionBean impleme ...

System.out输出重定向

    博客分类:
  • IO
dom4j格式化输出为String作例子 /** * 打印文档,String输出 * * @param doc * @param encoding */ public static String printString(Document doc, String encoding) { if (encoding == null)// 默认为UTF-8编码 { encoding = "UTF-8"; } String docStr = null; OutputFormat format = Outpu ...
下载的zip版的tomcat要注册为windows系统服务就要运行bin/service.bat 加载系统服务为 service install tomcat6 卸载系统服务为 service remove tomcat6 可以对service.bat文件做一些其他修改,使tomcat更加能满足我们各种不同需求时的要求 1. 如果让tomcat编译jsp文件,就在PR_CLASSPATH中加入J2SDK的tools.jar 修改前: set PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar 修改后: set PR_CLASSPATH=%JAV ...
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:amq="http://activemq.org/config/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.or ...
OSWorkflow www.opensymphony.com/osworkflow/ http://wiki.opensymphony.com/pages/viewpage.action?pageId=2481
java 代码 public class TestReadJar {           /**        * @param args        */       public static void main(String[] args) throws IOException {            String jarName="C://VODOSSClient.jar";            String fileName="client.properties";    ...
Global site tag (gtag.js) - Google Analytics