Struts2里用strutsmenu须注意的地方

Struts1.0中的struts menu

menu-config.xml为菜单配置文件!

在struts1.2的struts-config.xml文件中加入如下代码:

参数是:menuConfig 对应值是:菜单配置文件path!

Struts2.0中的struts menu

menu-config.xml文件中

注意添加条目时,一定要修改Item name属性,不能重复哦,否则无法正常显示!

Struts3.0中的struts menu

struts2中配置struts-menu

以前在struts1.x中需要在struts-config.xml中配置 来引入struts-menu,现在在只需要在web.xml中配置一个监听就可以了

     
     

net.sf.navigator.menu.MenuContextListener


----MenuContextListener.java部分源代码:--------

public class MenuContextListener implements ServletContextListener {
private static Log log = LogFactory.getLog(MenuContextListener.class);
private ServletContext ctx;


private String menuConfig = "/WEB-INF/menu-config.xml";


public void contextInitialized(ServletContextEvent sce) {
ctx = sce.getServletContext();

if (log.isDebugEnabled()) {
log.debug("Starting struts-menu initialization");
}

// check for menuConfigLocation context-param
String override =
sce.getServletContext().getInitParameter("menuConfigLocation");
if (override != null) {
if (log.isDebugEnabled()) {
log.debug("using menuConfigLocation: " + override);
}
this.menuConfig = override;
}

MenuRepository repository = new MenuRepository();
repository.setLoadParam(menuConfig);

......
对比struts1中的插件加载方式,这个舒心多了,但是struts2中菜单配置文件一定是:menu-config.xml,
struts1中则可以自己命名!

名称栏目:Struts2里用strutsmenu须注意的地方
标题网址:http://www.mswzjz.cn/qtweb/news26/331626.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能