`
k1280000
  • 浏览: 203902 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
错误提示     Server already runnign on localhost     解决方案: (不懂请点击附件查看图片) 双击server 打开的文件里把  Startup Poller 改成 JBoss 7 Manager Service  保存,这会就能启动了.       具体原因请查阅以下官方说明: https://community.jboss.org/en/tools/blog/2011/11/24/jboss-as-71-beta1-with-jboss-tools--use-web-port-poller
容器管理 分PersistenceContext 注入和 JNDI查找两种 //1.直接注入 @PersistenceContext(name="unitName") //unitName 就是persistence.xml对应的 EntityManager em; //2. JNDI查找 @PersistenceContext(name="jpa") //name可以自己定义 public class DB implements DBRemote { @Resource SessionContext ctx ...
Using Collections in Entity Fields and Properties Collection-valued persistent fields and properties must use the supported Java collection interfaces regardless of whether the entity uses persistent fields or properties. The following collection interfaces may be used: ■ java.util.Collect ...
  PS: 答案 感谢 jinnianshilongnian同学,终于找到问题所以。   发现其实不是自关联的问题,所有的关系都是一样的存在这样的问题,只要注意一下就可避免。 问题出在: Java persistence 允许两种注解方式去与数据库的table作映射: field和property . 经过测试,这两种方式是不能混着用的, 如果你选择在field上注解就不要再在getter方法上注解。 像我下面成功的代码里,注解都是在field上的,而出问题的代码是因为我的id是注解在field上而其它两个是注解在getter方法上。 总结 : 各字段的映射要么全在fi ...
JBOSS 6,7调用通过JNDI查找EJB的方法和JBOSS5不一样。   JBOSS 5   Properties props = new Properties(); props.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory"); //jndi factory props.setProperty("java.naming.provi ...
 中文版在  http://vase.iteye.com/blog/1299425 Create oracle DataSource Steps : Install driver as core module Create folder at  EAP_HOME/modules/  <此处有图片,如不显示请看附件>Compare with other folders under modules you will find the last folder Name is main. 我自己的module.xml
转自 http://weijinxian.iteye.com/blog/1582675   今天需要处理很多的字符串匹配问题。 在涉及到regexp时发现"$"得特别处理,具体的如在replaceAll中或者split中要想处理"$",得写成"//$". 另外,对于"|",即竖线的处理也得注意,应该是"[|]".    why???

inherit

继承父类的实例方法是覆盖,而且继承静态方法则是隐藏。 隐藏意味着,你还可以调用到父类的被隐藏的方法。 Instance Methods An instance method in a subclass with the same signature (name, plus the number and the type of its parameters) and return type as an instance method in the superclass overrides the superclass's method. Class Methods ...
  子类 public class SubClass extends SuperClass.InnerClass { SuperClass superClass; public SubClass (SuperClass superClass){ superClass.super(); //由于内部类构建器必须同封装类对象的一个句柄联系到一起, //所以从一个内部类继承的时候这里建立一个句柄 this.superClass = superClass; ...

interface

  http://docs.oracle.com/javase/tutorial/java/IandI/interfaceDef.html   An interface declaration consists of modifiers, the keyword interface , the interface name, a comma-separated list of parent interfaces (if any), and the interface body. For example:   public interface GroupedInterface ex ...
Understanding WSDL (http://msdn.microsoft.com/en-us/library/ms996486.aspx) 232 out of 879 rated this helpful - Rate this topic   Aaron Skonnard Northface University October 2003 Applies to:    Web Services    Web Service ...
转 java.util.ResourceBundle使用详解       java.util.ResourceBundle使用详解   一、认识国际化资源文件   这个类提供软件国际化的捷径。通过此类,可以使您所编写的程序可以:          轻松地本地化或翻译成不同的语言          一次处理多个语言环境          以后可以轻松地进行修改,支持更多的语言环境   说的简单点,这个类的作用就是读取资源属性文件(properties),然后根据.properties文件的名称信息(本地化信息),匹配当前系统的国别语言信息(也可 ...
通常我们在开始时设置MAVEN_OPTS的值为: -Xms128m -Xmx512 ,因为JAVA默认的最大可用内存往往不能满足MAVEN运行的需要,比如在项目比较大时,使用MAVEN生成项目站点需要占用大量的内存,如果没有该配置,我们很容易得到java.lang.OutOfMemoryErrro.     from  Maven in action.pdf
(转自)http://www.blogjava.net/hwpok/archive/2008/01/16/175711.html   log4j.properties 使用 一.参数意义说明 输出级别的种类 ERROR、WARN、INFO、DEBUG ERROR 为严重错误 主要是程序的错误 WARN 为一般警告,比如session丢失 INFO 为一般要显示的信息,比如登录登出 DEBUG 为程序的调试信息 配置日志信息输出目的地 log4j.appender.appenderName = fully.qualified.name.of.appender.class 1 ...
转( Struts2 ognl中的#、%和$符号用法说明 )   http://blog.csdn.net/pengyouchuan/article/details/3712933        #、%和$符号在OGNL表达式中经常出现,而这三种符号也是开发者不容易掌握和理解的部分。在这里笔者简单介绍它们的相应用途。 1.#符号的用途一般有三种。    1)访问非根对象属性,例如示例中的#session.msg表达式,由于Struts 2中值栈被视为根对象,所以访问其他非根对象时, ...
Global site tag (gtag.js) - Google Analytics