Die MVC-Kombination aus Ruhezustand und Spring funktioniert nicht ordnungsgemäßJava

Java-Forum
Anonymous
 Die MVC-Kombination aus Ruhezustand und Spring funktioniert nicht ordnungsgemäß

Post by Anonymous »

Ich lerne Spring MVC mit Hibernate. Ich habe ein Tutorial ausprobiert, in dem es mit Reverse Engineering und hbm.xml gezeigt wird. Aber ich möchte dafür eine annotierte Domänenklasse verwenden. Ich versuche es zwar etwas, habe aber kein Glück.
Ich habe ein Webprojekt in Netbeans mit Spring- und Hibernate-Framework erstellt. Wenn ich das Formular absende, funktioniert es einwandfrei und leitet auf eine andere Seite weiter, aber die Daten werden nicht gespeichert. Wie kann ich das beheben? Hier sind meine Versuche weiter unten.
Meine Projektstruktur:
Image

Mein Dispatcher-Servlet.xml:

Code: Select all

    








Mein Anwendungskontext:

Code: Select all

    



Meine web.xml:

Code: Select all

    


contextConfigLocation
/WEB-INF/applicationContext.xml


org.springframework.web.context.ContextLoaderListener


dispatcher
org.springframework.web.servlet.DispatcherServlet
2


dispatcher
*.html



30



redirect.jsp


Mein hibernate.cfg.xml:

Code: Select all

    



org.hibernate.dialect.MySQLDialect
com.mysql.jdbc.Driver
jdbc:mysql://localhost:3306/springhibernate?zeroDateTimeBehavior=convertToNull
root
50
true
org.hibernate.hql.ast.ASTQueryTranslatorFactory


Mein Benutzercontroller:

Code: Select all

    @Controller
public class UserController {

private static SessionFactory factory;

@RequestMapping(value="/getForm", method = RequestMethod.GET)
public ModelAndView getDemoForm(){
ModelAndView model = new ModelAndView("demoForm");
return model;
}

@RequestMapping(value = "/submitDemoForm.html", method = RequestMethod.POST)
public ModelAndView submitAdmissionForm(@ModelAttribute("employee") EmployeeAnnotation employee) {
try {
factory = new AnnotationConfiguration().
configure().
//addPackage("com.xyz") //add package if used.
addAnnotatedClass(EmployeeAnnotation.class).
buildSessionFactory();
} catch (Throwable ex) {
System.err.println("Failed to create sessionFactory object." + ex);
throw new ExceptionInInitializerError(ex);
}

Session session = factory.openSession();
Transaction tx = null;
Integer employeeID = null;
try {
tx = session.beginTransaction();
employeeID = (Integer) session.save(employee);
tx.commit();
} catch (HibernateException e) {
if (tx != null) {
tx.rollback();
}
e.printStackTrace();
} finally {
session.close();
}

ModelAndView model = new ModelAndView("demoFormSuccess");

return model;
}

}
Meine EmployeeAnnotation-Klasse (Pojo):

Code: Select all

import javax.persistence.*;

@Entity
@Table(name = "employee_annotation")
public class EmployeeAnnotation {
@Id @GeneratedValue
@Column(name = "id")
private int id;

@Column(name = "first_name")
private String firstName;

@Column(name = "last_name")
private String lastName;

@Column(name = "salary")
private int salary;

public EmployeeAnnotation() {}
public int getId() {
return id;
}
public void setId( int id ) {
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName( String first_name ) {
this.firstName = first_name;
}
public String getLastName() {
return lastName;
}
public void setLastName( String last_name ) {
this.lastName = last_name;
}
public int getSalary() {
return salary;
}
public void setSalary( int salary ) {
this.salary = salary;
}
}
Mein demoForm.jsp:

Code: Select all

    

Firts Name : 

Last Name : 

Salary : 




Mein demoFormSuccess.jsp:

Code: Select all

ID is :: ${employee.id}

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post