- 浏览: 76238 次
- 性别:
- 来自: 广州
最新评论
-
liur88:
好贴,这个问题折腾了我1天了 不过还是没找到哪里修改
Building and running the Broadleaf Commerce demo site -
dean_liu:
dean_liu 写道dengtujian 写道X-Reque ...
Spring Security AJAX登录 -
dean_liu:
dengtujian 写道X-Requested-With 有 ...
Spring Security AJAX登录 -
dean_liu:
dengtujian 写道X-Requested-With 有 ...
Spring Security AJAX登录 -
dengtujian:
X-Requested-With 有些浏览器不区分ajax请求 ...
Spring Security AJAX登录
文章列表
使用Spring MVC不通过View直接生成一个页面有两种方法:
@RequestMapping(value = "/something")
public void helloWorld(HttpServletResponse response) {
response.getWriter().println("Hello World")
}
@RequestMapping(value = "/something")
@ResponseBody
public String helloWorld() {
...
The easiest way to share localhost web servers to the rest of the world。
http://progrium.com/localtunnel/
localtunnel for windows
https://github.com/danielrmz/localtunnel-net-client
localtunnel-net-client安装后运行提示找不到WindowsAPICodePack或sqlite,下载它们解压后把相应的DLL拷贝到localtunnel-net-client安装目录下.
WindowsAPICo ...
按照Getting Started的指引,最后运行时还是出现了以下问题:
[artifact:dependencies] Downloading: com/ptp/core/1.0/core-1.0.jar from repository public releases at http://www.broadleafcommerce.org/nexus/content/repositories/snapshots/
[artifact:dependencies] Unable to locate resource in repository
[artifact:dependencies] ...
1.关联查询
假设有以下领域对象:
class Account{
Transaction transaction
Date created
}
class Transaction{
Date date
}
def c = Account.createCriteria()
def now = new Date()
def results = c.list {
transaction {//查询关联的属性
between('date',now-10, now)
}
eq("tran ...
在 Java 中,无论是 explicit 还是 implicit 方式,都要求在子类的构造方法中调用其父类的构造方法。如果父类无构造方法(其实是一个默认无参的构造方法),那么子类的构造方法中会自动进行调用;如果 父类有自己的构造方法(这时父类不会有默认无参的构造方法),那么在子类的构造方法中,必须要调用父类的某个构造方法,而且必须是在构造方法的第一个语句 中进行调用。
究其原因,想必是 Java 语言设计者,要求子类有责任保证它所继承的父类尽快进入到一个稳定、完整的状态中。试想,如果没有这个约束,那么子类的某个继承自父类的方法可能会使用到父类中的一些变量,而这 ...
1.关于object.name的行为
In Groovy, everything starts with the GroovyObject interface, which, like all the
other classes we’ve mentioned, is declared in the package groovy.lang. It looks
like this:
public interface GroovyObject {
public Object invokeMethod(String name, Object args);
public Object getPr ...
第4章 列表、映射和范围
在映射字面值中,如果某个元素的关键字是一个变量名,那么它将被解释成一个String值。
在下面的范例中:
def x = 1
def y = 2
def m = [x :y, y : x]
于是,m就是映射:
m = ['x' : 2, 'y' : 1]
Groovy User Guide的描述:
引用Map keys are strings by default: [a:1] is equivalent to ["a":1]. But if you really want a variable to become the ke ...
在命令行使用./startofbiz.sh启动Opentaps正常, 而在Eclipse中启动时出现异常,异常信息如下:
org.ofbiz.base.start.StartupException: Cannot start()
org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
StandardFileSystemManager (Could not load VFS configuration from
"file:/home/engineers/workspaces/ws-opentaps-tpg/openta ...
适用范围:
一、鱼刺卡喉,而不是鱼翅卡喉,被鱼翅卡喉本方案完全不适用;
二、还是鱼刺卡喉,而不是鱼骨卡喉,区别在于大小,如果是鱼骨请马上叫白车迟了请叫黑车;
三、疼痛感不强,只是稍微感觉不适,否则请参考第二点。
现在的Java企业应用软件不贴个“轻量级”、不用个Spring,都不好意思出来见人了,应对鱼刺卡喉也是如此。
何谓“轻量级”?名词解释就不来了,轻量级是相对于重量级的,知道了什么是重量级就相当明白什么是轻量级,重量级举例如下:
1.饮鸭涎水 取活鸭子1只,倒捉鸭脚让其鸣叫,流出口涎, 用干净杯碗接盛,慢慢喝下滋润喉咙,细小鱼刺很快便会溶化
点评:此方法非常有创意,不 ...
ApacheCommos的DbUtils是一个简单好用的轻量级的数据库操作工具,该项目的主页是:http://commons.apache.org/dbutils/,关于它的信息可以从那里获取.
请看代码:
QueryRunner run = new QueryRunner(dataSource);
// Use the BeanListHandler implementation to convert all
// ResultSet rows into a List of Person JavaBeans.
ResultSetHandler<List< ...