Hey,
As some already know I creating Crud app
I already have Read,Delete and create but I get an error while updating data
When I click on a reservation(for a hotel) I get the values from my...
Type: Posts; User: Eclectica; Keyword(s):
Hey,
As some already know I creating Crud app
I already have Read,Delete and create but I get an error while updating data
When I click on a reservation(for a hotel) I get the values from my...
PROBLEM SOLVED
I forget adding my xlmns schema and location for my transaction manager
Ok thanks, but im a newbie in Java so can you explain the steps I need to do ?
Thanks
Do you mean I need to delete the code "@Repository" ?
If I delete this I get an error:
Or Do I need to delete also other codes ?
Hi,
A few weeks ago I posted my problem I could not persist my records.
I still have this problem but I fixed some errors.
I have a Form with a few textboxes to make a reservation for a hotel....
I Comment my tx:annotation-drive because i get this error "Element of attributes dont match"
Hi Carlos, here my app-context
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
Hi carlos,
Where can i enable logging on org.springframework.... ?
And where can i set the transactionmanaget ?
Thnx
Hi I have a Webapplication and yesterday everything was ok when I tried to run my project.
Today I wanted to run my project and get the error :HTTP Status 404 - Servlet appServlet is not available
...
Hi I have a Webapp and i want to insert a record in my db
This is my controller
public class ReservationController {
@Autowired
private RoomDAO roomdao;
@Autowired
private...
Hey MArten,
I found my problem The name of my database is FutureFruit and not 'Futurefruit' it made a mistake.
So problen solved thnx fr yr relpy!
Hi,
I have a MavenWebapplication in netbeans and when I run my project I have the following error:
Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException:...
Hi,
How can I create a unit test in Eclipse?
If I run my project I see my Home.jsp so thats not a problem
I see my Welcome screen but no data...
Thnx for your reply
I changed some code in my view but it still doesnt work :-( :
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...
hi pgrimard, this is my controller class
package eu.hotel.example.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;...
Hi,
I'm trying to create a HotelBooking application in SpringMVC.
I create a database in MySQL named: dbHotels with a table: tblhotels with a few columns (name,address,...)
In Eclipse I...