- 浏览: 27041 次
- 性别:
- 来自: 杭州
最新评论
文章列表
字符串模板赋值
- 博客分类:
- java
- string
- placeholder
在程序实现中,我们经常会在一些字符串内部需要插入一些变量。
当然直接用String,StringBuffer,StringBuilder拼接是完全没有问题的。
这里讲另外两种方式:
1、使用
MessageFormat.format(String pattern, Object.. arg);
例如:
<h3>{0}申请进度</h3>
<div>申请人:<span style="font-weight:bold">{1}</span></div>
<div>您的申 ...
spring的test framework2.5版本和junit集成的时候,只能使用Junit4.4,高版本不支持。
如果2.5版本的spring test,结合使用了高版本的junit就会产生java.lang.ClassNotFoundException: org.junit.Assume$AssumptionViolatedException 异常。
参考:http://joinyo.iteye.com/blog/1439797
本篇讲的是jforum将帖子和主题同步至discuz中,其他开源论坛也可使用。
<?php
// sync_threads();
sync_posts();
// update_forum_id();
// insert_common_stat();
// update_member_count();
// update_post_detail();
// update_thread_detail();
/**
* update last post time and author name on every thread
*/
f ...
公司最近上了bbs,之前由于项目比较紧迫,然后公司内部又没有熟悉php的同志。于是选用了jforum开源论坛。但随着时间的推移,其功能太过简单的问题日益暴露。当然,可以通过开发来完成。但是其成本太高,于是开始研究discuz,如果能将discuz整合进来那就完美了。最新的discuz版本是x2.5,x2.5版本的php代码封装太过抽象,像我这种初识discuz及php的小白完全找不到北。进过几天的努力宣告放弃。逐在网上寻找通过java实现单点登陆的方法,于是找到了一个在googlecode上的一个开源项目discuz-ucenter-api-for-java。通过1天的努力将其调试通过,下面简略 ...
最初是想安装双系统的,最后还是退而求其次,用VM装了。
首先到ubuntu官网上下载LiveCD包http://www.ubuntu.com/download/desktop/windows-installer,是个iso文件。
在下个VM Workstation,网上有很多随便找。装好了vm后,将iso文件装到虚拟机里 ...
前些天在做项目的时候需要用到Hibernate的级联保存和更新,出现了几个错误,已经解决了这里记上一笔。
首先是实例:
@Entity
@Table(name = "tbl_order")
public class Order {
@Id
@GeneratedValue(generator = "ORDER_ID")
@GenericGenerator(strategy = "assigned", name = "ORDER_ID")
private Integer id;
...