程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Struts2裡用struts menu須注意的地方

Struts2裡用struts menu須注意的地方

編輯:關於JAVA

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中則可以自己命名!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved