`
文章列表
使用Hibernate的sum函数进行数据的统计时,出现一个错误: 代码: String sql = "select SUM(nf.fee) from CFee as nf where nf.adminAccount='testaccount' "; public long getListSqlCountsLong(String sql) { beginTransaction(); List li = getSession().createQuery(sql).list(); if (li == null || li.isEmpty()) { ...
package lee; public class Book ...{ private String name; private String author; public Book() ...{ } public Book(String name , String author) ...{ this.name = name; this.author = author; } public void setName(String name) ...
如果你用win /tomcat/bin/catalina.bat 加上下面的命令: set JAVA_OPTS=-Xms32m -Xmx256m 如果你用unix/linux /tomcat/bin/catalina.sh 加上下面的命令: JAVA_OPTS="-Xms32m -Xmx256m" 安装版tomcat: 双击tomcat6w.exe,选择"java"选项卡,在Java Options中添加一行 -DJAVA_OPTIONS=-Xms32m -Xmx256m

Java的位移操作

    博客分类:
  • JAVA
1.左移操作: x << n x可以是byte, short, char, int, long基本类型, n(位移量)只能是int型 编译器的执行步骤: 1) 如果x是byte, short, char类型, 则将x提升为int; 2) 如果x是byte, short, char, int类型, 则n被重新赋值(过程是:取n的补码的低5位再转成十进制的int值,相当对n取32模: n=n%32);    如果x是long型, 则n被重新赋值(过程是:取n的补码的低6位再转成十进制的int值,相当对n取64模: n=n%64);    (因为int类型为4个字节,即32位,移动32位 ...
1.下载javamail 的jar包:http://cds-esd.sun.com/ESD36/JSCDL/javamail/1.4.1/javamail-1_4_1.zip?AuthParam=1208313388_ba889c08bdcf431df94e26ed2a5b590f&TicketId=B%2Fw6lxSIRF1JSB1LMl5blAbl&GroupName=CDS&FilePath=/ESD36/JSCDL/javamail/1.4.1/javamail-1_4_1.zip&File=javamail-1_4_1.zip 2.创建两个类 packa ...
严重: Exception starting filter Struts2 Caught exception while loading file struts-default.xml - [unknown location] at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.loadConfigurationFiles(XmlConfigurationProvider.java:839) at com.opensymphony.xwork2.config.providers.XmlConfigurati ...
This was developed to allow for the formatting of dates in JavaScript and ActionScript like PHP can do. I actually just took the documentation from the PHP date function and went down the list implementing every option that I could do easily. I know more support could be added, but I didn't need it ( ...
Struts 2框架有两个核心配置文件:     struts.xml和struts.properties     其中struts.xml文件主要负责管理应用中的Action映射,以及该Action包含的Result定义等。除此之外,Struts 2框架还包含一个struts.properties文件,该文件定义了Struts 2框架的大量属性,开发者可以通过改变这些属性来满足应用的需求。      struts.properties文件是一个标准的Properties文件,该文件包含了系列的key-value对象,每个key就是一个Struts 2属性,该key对应的value就是一个 ...
struts.action.extension           The URL extension to use to determine if the request is meant for a Struts action            用URL扩展名来确定是否这个请求是被用作Struts action,其实也就是设置 action的后缀,例如login.do的'do'字。 struts.configuration           The org.apache.struts2.config.Configuration implementation class        ...
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/applicationContext.x ...
Apache的HTTPD是目前比较受欢迎的网站服务器软件,它不但功能强大,而且完全免费,并且支持市场上流行的各种操作系统(Windows, Linux,Mac os)。同时对于Java Servlet/JSP的支持,通常也会使用同样Apache出品的Tomcat。 Tomcat除了支持Java Servl ...
SQL Server会把用过的数据放入cache,以便加速数据的访问。如果没有其它进程竞争,那么SQL Server会使用几乎全部的内存,直到有其它进程需要内存,才会释放内存。 在并发度不大的情况下,不用去设置SQL Server的内存是没什么问题的。但是在高并发度/大数据量的情况,这样可能会导致大量的页交换。推荐的做法是,设置SQL Server使用75%的内存,比如64G内存的服务器,我们一般设置SQL的最大内存为48G,然后观察SQL的Buffer Cache Hit Ratio,如果低于99%,再增加2G内存,直到Buffer Cache Hit Ratio高于99% 查询Buffer ...
SQL Server 2005的新功能为动态管理对象,它们是在指定时间返回某个数据库实例的特殊状态信息的数据库视图或函数。这些对象允许数据库管理员或开发者对数据库服务器进行高效监控。动态管理对象取代了SQL Server以前版本中的许多系统表格,但也为数据库管理员提供更多观测手段。 服务器上需要监控的内容,几乎都有对应的动态管理对象。既然有这么多动态管理对象,在这篇文章中逐一进行讨论是不实际的。例如,共有12类动态管理对象,但这里我主要讨论我认为相当重要的五个对象,它们分别来自与SQL Server操作系统、目录和执行有关的类中。 这些对象被分为两类:数据库级别和服务器级别。SQL Serv ...
一、安装Ruby 1、下载Ruby(http://www.ruby-lang.org)安装包,我下的是ruby186-26.exe,双击安装,安装过程中注意选中"Enable RubyGems",当安装完成后,path路径里会自动添加ruby/bin路径 2、打开"命令提示符cmd",输入"ruby -v"查看版本号,则表示ruby安装成功 二、安装Rails 1、下载JDK(http://java.sun.com/),安装,否则下面的"gem install"会提示错误 2、下载Rails(http://www. ...
SQL Server 由2000升级至2005,原来运行很好的hibernate语句(load查询)有一部分不能正常运行,但在我本机可以运行,放到外网服务器上就不行了. 解决方法: 将load(Object.class,id)语句改成query查询就可以了 由 getSession().load(Admin.class, adminId); 改为: query = getSession().createQuery("from Admin where id=?"); query.setInteger(0, adminId);
Global site tag (gtag.js) - Google Analytics