- 浏览: 94674 次
- 性别:
- 来自: 西安
最新评论
-
cxzhlly:
我这边是停止了sever之后,删除对应的ear和ejb文件,再 ...
jboss xxx is already registered
文章列表
WPF 向控制台输出内容
- 博客分类:
- WPF
.选择属性
2.选择控制台应用程序
3. 然后你就能在控制台看到输出了。
控制台随时可以通过第二步的选项去掉
在visual studio中
似乎要使用 __FUNCTION__ 来代替
#include<stdio.h>
#include <stdarg.h>
#include <string.h>
void test(char str[20]) {
printf("%s:size=%d\n",__FUNCTION__, sizeof(str));
}
int main(int argc, char* argv[])
{
char str[20] = {0};
test(str);
pri ...
怎样找出链表中间的元素
- 博客分类:
- 数据结构
http://zhidao.baidu.com/question/171061854.html
用两个指针 一个指针每次跳一次 P1 = P1->NEXT
另外一个指针 每次跳两次 P2 = p2->next->next 当P2为NULL时那个就是终点,这时P1所在的位置就是中间节点 这是相对于单向链表哦
如何判断一个链表是否有环路
- 博客分类:
- 数据结构
转自
http://www.iteye.com/topic/1114110
public static boolean hasLoop(Node root) {
r1 = root.clone();
r2 = root.cl
java.lang.NoSuchMethodError: org.apache.struts2.interceptor.StrutsConversionErrorInterceptor.escape(Ljava/lang/Object;)Ljava/lang/String;
StrutsConversionErrorInterceptor
Action中得类型写为int,页面传过来了一个字符串:)
转自
http://stackoverflow.com/questions/7648897/jboss-7-not-java-ee6-certified
An application server is only Java EE 6 "Full Profile" certified if it implements all aspects of the huge Java EE API.
An application server is only Java EE 6 "Web Profile" certified if it impleme ...
<td style="display=none" ></td>
<td style="display=''" ></td>
将 www.sohu.com 改为你的网站即可
<form name="f1" action="http://www.baidu.com/baidu">
<input name=word size="30" maxlength="100">
<input type="submit" value="搜索"><br>
<input name=tn type=hidden value="bds&quo ...
转自
http://panjunlai.blog.163.com/blog/static/58190301200933022557306/
在html中:name指的是用户名称,ID指的是用户注册是系统自动分配给用户的一个序列号。
name是用来提交数据的,提供给表单用,可以重复;
id则针对文档操作时候用,不能重复。如:document.getElementById();
一、ID是在客户端脚本里用!NAME是用于获取提交表单的某表单域信息,在form里面,如果不指定Name的话,就不会发送到服务器端。
二、以下元素input、select、form、frame、ifr ...
myeclipse 默认生成的查询函数是这样的
@SuppressWarnings("unchecked")
public List<AAA> findAll(final int... rowStartIdxAndCount) {
//修改这句
final String queryString = "select model from CardType model";
// 将上面的语句修改即可
final String queryString = "select m ...
转自 : http://zhidao.baidu.com/question/256505706.html
计算机——(右键)管理——系统工具——本地用户和组,启用administrator帐户,然后切换用户到administrator,运行安装程序,安装完会发现服务已经能够启动了,然后再回 ...
jboss6 似乎需要用附件中的驱动
将驱动扔到
%JBOSS_HOME%\server\default\lib
下
配置文件扔到
%JBOSS_HOME%\server\default\deploy
下即可
配置文件如下
mssql-ds.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- ===================================================================== -- ...
摘自
http://www.rainripple.com/articles/ejb3-1-timer-service.html
1.Timers默认会被持久化。
所以需要设置
设置persistent:
timerConfig.setPersistent(false);
@Schedule(persistent=false..
2.如果已经被持久化了,可以