在使用Struts 2和Eclipse上的Hibernate在MySQL中编译时,App在Tomcat上出现404错误

时间:2013-11-27 19:08:32

标签: java mysql eclipse hibernate struts2

我正在尝试运行一个简单的Struts应用程序,该应用程序为用户提供字段,以输入他们使用的操作系统类型和版本以及备注的可选字段。然后,它将在新页面上显示结果作为索引列表。它类似于任何基本的联系人组织者应用程序,但用于列出操作系统信息。

但是,IDE根本没有显示任何错误。我想我没有正确连接数据库。这是我在设置时最不确定的步骤。由于我正在使用特定的框架,工具等,我无法找到专门针对在我的环境中设置数据库的教程(不确定是否存在差异或是否存在通用方法)。

由于这是我用Java构建的第一个应用程序,因此我的故障排除能力非常有限,但是我给它的全部内容!来自Rails / JS的这是一个很大的跳跃(对我来说),所以Jedis给像我这样的Padawan的一些指导将会有很长的路要走。无论如何,因为跳入Java代码库(在我看来)可能会很棘手,我会尽可能精确但是随意给我一行进行详细说明,需要查看特定文件,或者如果你只是想要我的项目的war文件在你自己的开发中查看它。环境(如果这将有所帮助)。

虽然JDBC让我感到困惑,但我已经安装好了所有工作。是手动安装还是在代码中将其称为依赖项?当我尝试使用Tomcat 7进行编译和运行时,有一些错误基本上与下面的代码段相同:

SEVERE: Dispatcher initialization failed
Unable to load configuration. - action - file:/Users/jasonrodriguez/Java/apache-tomcat-7.0.47/wtpwebapps/firstapp/WEB-INF/classes/struts.xml:14:74

代码库中的不同点。所以也许它们都与同样的问题有关。

文件结构:

enter image description here

这是我的hibernate.cfg.xml

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 4.3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-4.3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="connection.driver_class">
            com.mysql.jdbc.Driver
        </property>
        <property name="connection.url">
            jdbc:mysql://localhost:3306/UserManager
        </property>
        <property name="connection.username">root</property>
        <property name="connection.password">root</property>
        <property name="connection.pool_size">1</property>
        <property name="dialect">
            org.hibernate.dialect.MySQLDialect
        </property>
        <property name="current_session_context_class">thread</property>
        <property name="cache.provider_class">
            org.hibernate.cache.NoCacheProvider
        </property>
        <property name="show_sql">true</property>
        <property name="hbm2ddl.auto">update</property>

        <mapping class="net.jasonrodriguez.user.model.User" />

    </session-factory>

这是我的struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
    <constant name="struts.enable.DynamicMethodInvocation"
        value="false" />
    <constant name="struts.devMode" value="false" />

    <package name="default" extends="struts-default" namespace="/">

        <action name="add"
            class="net.jasonrodriguez.user.view.UserAction" method="add">
            <result name="success" type="chain">index</result>
            <result name="input" type="chain">index</result>
        </action>

        <action name="delete"
            class="net.jasonrodriguez.user.view.UserAction" method="delete">
            <result name="success" type="chain">index</result>
        </action>

        <action name="index"
            class="net.jasonrodriguez.user.view.UserAction">
            <result name="success">index.jsp</result>
        </action>
    </package>
</struts>

以下是针对Struts的web.xml过滤器:

  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>
        org.apache.struts2.dispatcher.FilterDispatcher
    </filter-class>
</filter>
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

这是我的控制器:

package net.jasonrodriguez.user.controller;


import java.util.List;

import net.jasonrodriguez.user.model.User;
import net.jasonrodriguez.user.util.HibernateUtil;

import org.hibernate.HibernateException;
import org.hibernate.Session;

public class UserManager extends HibernateUtil {

    public User add(User user) {
        Session session = HibernateUtil.getSessionFactory().getCurrentSession();
        session.beginTransaction();
        session.save(user);
        session.getTransaction().commit();
        return user;
    }
    public User delete(Long id) {
        Session session = HibernateUtil.getSessionFactory().getCurrentSession();
        session.beginTransaction();
        User user = (User) session.load(User.class, id);
        if(null != user) {
            session.delete(user);
        }
        session.getTransaction().commit();
        return user;
    }

    public List<User> list() {

        Session session = HibernateUtil.getSessionFactory().getCurrentSession();
        session.beginTransaction();
        List<User> users = null;
        try {

            users = (List<User>)session.createQuery("from User").list();

        } catch (HibernateException e) {
            e.printStackTrace();
            session.getTransaction().rollback();
        }
        session.getTransaction().commit();
        return users;
    }
}

这是我的HibernateUtil.java

package net.jasonrodriguez.user.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;

public class HibernateUtil {

    private static final SessionFactory sessionFactory = buildSessionFactory();

    private static SessionFactory buildSessionFactory() {
        try {
            // Create the SessionFactory from hibernate.cfg.xml
            return new AnnotationConfiguration().configure()
                    .buildSessionFactory();
        } catch (Throwable ex) {
            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
}

以下是我的观看操作:

package net.jasonrodriguez.user.view;

import java.util.List;

import net.jasonrodriguez.user.controller.UserManager;
import net.jasonrodriguez.user.model.User;

import com.opensymphony.xwork2.ActionSupport;


public class UserAction extends ActionSupport {

    private static final long serialVersionUID = 9149826260758390091L;
    private User user;
    private List<User> userList;
    private Long id;

    private UserManager userManager;

    public UserAction() {
        userManager = new UserManager();
    }

    public String execute() {
        this.userList = userManager.list();
        System.out.println("execute called");
        return SUCCESS;
    }

    public String add() {
        System.out.println(getUser());
        try {
            userManager.add(getUser());
        } catch (Exception e) {
            e.printStackTrace();
        }
        this.userList = userManager.list();
        return SUCCESS;
    }

    public String delete() {
        userManager.delete(getId());
        return SUCCESS;
    }

    public User getUser() {
        return user;
    }

    public List<User> getUserList() {
        return userList;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public void setUserList(List<User> usersList) {
        this.userList = usersList;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
}

部署Tomcat时,它会给我一个网页,上面有404错误,说它无法找到资源。

1 个答案:

答案 0 :(得分:1)

web.xml中的过滤器类更改为org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter。不推荐使用FilderDispatcher,当您使用2.3 DTD时,它应该与库相对应。