- 浏览: 6263 次
- 性别:
- 来自: 北京
最新评论
文章列表
一、struts-config.xml中标签path属性传多个参数
在struts-config.xml中配置<forward>标签时候,通过地址传递参数,想当然的把参数加在后面:
配置信息如下:(这是错误的)
<forward name="editItemFinish" path="/user.do?method=in ...
在一个struts项目中,碰到这么一个问题:
用户的登录页面地址是:
http://localhost:8080/sduprs/user/user_login.jsp
登录后显示的地址为:
http://localhost:8080/sduprs/userLogin.do
更悲剧的是我们在后台使用了frame框架。这样登录后所有的操作 ...
ConcurrentHashMap 是 Doug Lea 的 util.concurrent 包的一部分,它提供比 Hashtable 或者 synchronizedMap 更高程度的并发性。而且,对于大多数成功的 get() 操作它会设法避免完全锁定,其结果就是使得并发应用程序有着非常好的吞吐量。这个月 ...
import java.util.*;
public class Main
{
public static void main(String args[])
{
Main main = new Main();
main.test();
}
public void test()
{
Map bb = new HashMap();
bb.put("1", "wj");
bb.put("2", "ry");
Iterator it = bb.keySet().iterator();
while(it.hasNext() ...