程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> action-Struts2用Action屬性接收參數報錯

action-Struts2用Action屬性接收參數報錯

編輯:編程綜合問答
Struts2用Action屬性接收參數報錯

這個項目報錯如下:There is no Action mapped for namespace [/] and action name [user!add] associated with context path [/input].

struts.xml的配置如下:
圖片說明

 UserAction.java文件

 package com.wxh.action;

import com.opensymphony.xwork2.ActionSupport;

public class UserAction extends ActionSupport {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private String name; 
    private int age;
    public String add(){
        System.out.println("name="+name);
        System.out.println("age="+age);
        return SUCCESS;
    }
    public String getName(){
        return name;
    }
    public void setName(String name){
        this.name=name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }


}


請問是什麼問題,怎麼解決?


最佳回答:


問題解決了,在struts.xml中加入這一句就行了。

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