RequestDispatcher with Struts2 -


वर्तमान में मैं getRequestDispatcher से नीचे स्ट्रश 2 से विफल हूं:

  अनुरोध डिस्पैचर आरडी = httpReq.getRequestDispatcher ("/ category.htm");  

त्रुटि को नीचे दिखाया गया था:

  अनुरोधित संसाधन (/xxxx/category.htm) उपलब्ध नहीं है।  

लेकिन यह ठीक काम कर रहा है जब http: /xxxx/yyyy/category.htm? Id = 21 निष्पादित कोई विचार करता है?

अगर यह /category.htm URL को मार रहा है ? Id = 21 , लेकिन यह /xxx/yyy/category.htm पर जाता है, तो आप अपने getRequestDispatcher () invocation में अंतिम URL के समान अनुरोध नहीं बना रहे हैं। इसके बजाय इसे आज़माएं:

  अनुरोधडिसीपचर rd = httpReq.getRequestDispatcher ("/ yyy / category.htm");  

Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -