- 浏览: 804717 次
- 性别:
- 来自: 上海
最新评论
-
qdujunjie:
如果把m换成具体的数字,比如4或者5,会让读者更明白
m阶B树中“阶”的含义 -
java-admin:
不错,加油,多写点文章
关于Extjs的mixins和plugin -
xiehuaidong880827:
你好,我用sencha cmd打包完本地工程后,把app.js ...
ExtJS使用Sencha Cmd合并javascript文件为一个文件 -
KIWIFLY:
lwpan 写道inverse = "true&qu ...
Hibernate中什么时候使用inverse=true -
luedipiaofeng:
good
消除IE stop running this script弹出框
文章列表
What is the difference between:
@Entity
public class Company {
@OneToMany(cascade = CascadeType.ALL , fetch = FetchType.LAZY)
@JoinColumn(name = "companyIdRef", referencedColumnName = "companyId")
private List<Branch> branches;
...
}
and
@Enti ...
1 ANNOTATIONS
1.1 @PrimaryKeyJoinColumn and mappedBy
1.1.1 Note
@PrimaryKeyJoinColumn is an annotation, while mappedBy is only an attribute of the @OneToOne, @OneToMany, @ManyToOne and @ManyToMany
1.1.2 Reference URL
The following material reference from section “2.2.5.1 One-to-one” at
http://docs.j ...
Maven Integration for Eclipse vs. Maven eclipse:eclipse plugin
The Maven Integration for Eclipse (m2eclipse) is an Eclipse plugin that allows execution of Maven goals and manages Maven dependencies. It is a different beast to the maven-eclipse-plugin which is a Maven plugin that attempts to manage/m ...
A mojo is a Maven plain Old Java Object
-opaque to Maven core
-can access Maven Session, Project model and filesystem
The Mojo project is a collection of plugins for Apache Maven 2 & 3
解决办法:
把Panel中的内容组件用<s:Scroller>封装起来,即可发现Panel为0时,里面的内容也看不到了。
可能的原因:
spark组件的scroller需要单独使用,如果你不使用scroller,那么panel的高度跟其内容的高度可能并不保持一致,或者说只有用了scroller组件,panel的高度才会影响其内容的高度。
Reference URL
http://www.coreservlets.com/Apache-Tomcat-Tutorial/tomcat-7-with-eclipse.html
After you new a tomcat server in eclipse and use worspace metadata(does not modify Tomcat installation), you may see 404 error when accessing localhost:8080/, you need to do the following thing:
Copy the ROO ...
可能是pom.xml文件里的依赖项目里面的属性变量不work,修改你依赖的那个项目的pom.xml,重新maven编译那个项目,再编译本项目
http://www.eclipsecon.org/europe2012/sites/eclipsecon.org.europe2012/files/EclipseConEU2012-m2e-talk.pdf
http://wiki.eclipse.org/M2E_plugin_execution_not_covered
http://www.ibm.com/developerworks/cn/web/1304_zengyz_jsoo/index.html#resources
http://www.mrdoob.com/projects/chromeexperiments/google-gravity/
http://codepen.io/stuffit/pen/KrAwx
Reference URL:
http://www.eclipse.org/subversive/documentation/teamSupport/workspace_synch.php
Synchronization state
The synchronization state is shown with the help of the following icon decorations:
Icon Description
Incoming addition An incoming addition icon means, that the marked resource was ...
简单的说,REST 指的是一组架构约束条件和原则。满足这些约束条件和原则的应用程序或设计就是 RESTful
Spring3.0实现REST实例
http://blog.csdn.net/leecho571/article/details/6559758
Unit testing framework
1) Jasmine
http://pivotal.github.io/jasmine/
2) siesta
http://www.bryntum.com/products/siesta/
Behavior-driven-development
http://en.wikipedia.org/wiki/Behavior-driven_development
http://www.swarmonline.com/2011/05/20-things-to-avoid-or-do-when-getting-started-with-extjs-and-sencha-touch/
JavaScript is not a real object-oriented language, it is a prototyping language, that is the difference with other object-oriented languages. In Javascript, you don’t use classes, you create objects from other objects.
Because JavaScript is a functionally scoped language creating a function and/or v ...