Mr.Daru 2017-03-13 07:59 采纳率: 76.5%
浏览 862
已采纳

saveOrUpdate event with null entity

看不出哪里问题,能进入action 但是获取不倒对象

@Action(value="article" ,results={
    @Result (name="success" ,location="/loginFailer.jsp")
})

public class ArticleAction extends ActionSupport{

    private static final long serialVersionUID = -2266695172069461659L;

    @Resource   
    private ArticleService articleServicle;
    private Article article;

    public Article getArticle() {
        return article;
    }

    public void setArticle(Article article) {
        this.article = article;
    }


    public String add(){
        System.out.println("asdasdasd");
        articleServicle.save(article);
        return "success";
    }
}



   <s:form action="article!add">
        <s:textfield name ="article.title" label="title"/>
        <s:textfield name ="article.content" label="content"/>
        <s:textfield name ="article.type" label="type"/>
        <s:textfield name="article.image" label="image"/>
        <s:textfield name="article.keywords" label="keywords"/>
        <s:textfield name="article.editer" label="editer"/>
        <s:submit value="sumbit"/>
   </s:form>  

 @Entity
@Table(name = "article")
public class Article {
@Id
@Column(name = "Id")
@GeneratedValue(strategy = GenerationType.IDENTITY) 
private int id;

@Column(name = "type")
private String type;

@Column(name = "content")
private String content;

@Column(name = "title")
public String title;

@Column(name = "keywords")
private String keywords;

@Column(name = "editer")
private String editer;

@Column(name = "image")
private String image;


public Article(String type,String content,String title,
        String keywords,String editer,String image
        ){
    this.type=type;
    this.content=content;
    this.title=title;
    this.keywords=keywords;
    this.editer=editer;
    this.image=image;

}
/*
略get,set
*/

展开全部

  • 写回答

1条回答 默认 最新

  • devmiao 2017-03-13 14:55
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部