- 浏览: 8200 次
最新评论
文章列表
IE 浏览器
filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=’#FFFFFF’, endColorStr=’#3568CC’, gradientType=’0′)
//支持IE8/9/...
startColorStr 开始颜色endColorStr 结束颜色gradientType 渐变的方式:0-从上到下,1-从左到右
filter:alpha(opacity=100 finishopacity=0 style=1 startx=0,starty=5,finishx=90,finishy= ...
Description
Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. This tag must be within The Loop or a comment loop.
Usage
<?php comments_popup_link( $zero, $one, $more, $css_cla
模板标签- the_time()
说明
该标签显示当前文章的发表时间。该标签必须用在主循环(loop)中。
用法
<?php the_time( $d ); ?>
参数
$d
(字符串)(可选)所显示时间的时间格式。默认为WordPress管理面板中设定的时间格式。参见设置日期和时间格式。
示例
默认用法
根据WordPress后台设置显示时间
Time posted: <?php the_time(); ?>
十二小时制VS 二十四小时
多数据源的情况,首先是配置
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://w ...
看下面这个测试:
1.测试用到的类,AService其中有2个方法分别是f1(); f2(); AServiceImpl中对于两个方法的实现:
@Override
public void f1() {
Session session = getSession();
logger.debug(session.hashCode());
}
@Override
public void f2() {
f1();
f1();
}
2.使用spring aop将事务配置在AService的任意方法上。
...
在整合struts时,原以为只是简单的配上就能跑,结果发现抛了个异常,没想清楚是怎么回事,然后认真地检查了下配置,原来如此啊。
异常如下:
Struts Problem Report
Struts has detected an unhandled exception:
Messages:
java.lang.NullPointerException
File: org/apache/jsp/error_jsp.java
Line number: 23
Stacktraces
org.apache.jasper.JasperException: ...