- 浏览: 12555 次
- 性别:
- 来自: 北京
最新评论
-
paulwong:
如果菜单数据放数据库里,怎么和数据库集成?
Struts2 与 struts-menu 集成
文章列表
BeanUtil.copyProperties 方法确实很方便,代码写出来非常优美,不会有很多的get set,但由于用到反射,可能存在潜在的性能问题。因此对spring 和 commons的BeanUtil.copyProperties进行了对照测试,代码大致如下:
@Test
public void copyPropertiesTest() throws IllegalAccessException, InvocationTargetException {
po = new PromotionPO();
Timestamp now = new Timestamp( ...
- 2009-06-01 14:10
- 浏览 7633
- 评论(0)
struts-menu 官方guide中似乎只提到跟struts的集成,与struts2集成有以下几个点:
1. 由于没有了struts-config.xml,需要在web.xml里添加如下监听器:
<listener>
<listener-class>net.sf.navigator.menu.MenuContextListener</listener-class>
</listener>
2. 把struts-menu-*.jar 放到classpath上
3. 创建 menu-config.xml,放到web/WEB-INF ...
- 2009-05-25 11:50
- 浏览 4922
- 评论(1)