Hey!
Can someone please direct me to a good tutorial or book and how to get integrate gwt with spring and hibernate?
Cheers!
Type: Posts; User: karq; Keyword(s):
Hey!
Can someone please direct me to a good tutorial or book and how to get integrate gwt with spring and hibernate?
Cheers!
sorry, I forgot to add the error message.
Here it is:
00:00:00.045 [WARN] Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'telekanalDAO':...
[/CODE]
Here's my TelekanalDAO class
package com.karq.saatekava.server.dao;
import javax.annotation.PostConstruct;
import javax.persistence.EntityManagerFactory;
import...
This is how I fixed the problem
<!--Mysql database connection info-->
<bean id="myDataSource" class="com.yeah.sql.SomeBasicDataSource" destroy-method="close">
<property...
Here's my datasource configuration
<bean id="myDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" destroy-method="close">
<property name="driverClassName"...
Hey everyone,
I'm trying to implement spring security for user login.
Here's the problem, when I add this into web.xml
<filter>
<filter-name>springSecurityFilterChain</filter-name>
...
Hey everyone!
First of I'm new to spring mvc.
Right now I trying to make a login page with a successpage. How do I create a session in spring? So that when I log in, then it redirects to...
I'm trying to make a login form with spring 3 mvc
But I keep getting this error:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name...
here's my file:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
I started to learn spring mvc and I have this problem
this is my Controller file:
public class HelloWorldController implements Controller {
public ModelAndView...