Hi,
I just discover the principal of DataBinding through PropertyEditor in the Spring MVC.
Basicly i have a simple object with 3 properties ( all strings ) : label, value and comment. This...
Type: Posts; User: belaran; Keyword(s):
Hi,
I just discover the principal of DataBinding through PropertyEditor in the Spring MVC.
Basicly i have a simple object with 3 properties ( all strings ) : label, value and comment. This...
Thanks you put me in the good direction !
I was looking for something wrong in my config ( such missing index="0") but in fact the problem was there : I refactored my class XmlDao to DaoImpl so it...
I tried this only alone :
<bean id="Datasource" class="com.ao.springframework.webflow.samples.phonebook.orm.XmlDbImpl">
<constructor-arg...
simple curiousity ... What is web clustering ? Somme good links to recommend ?
Sorry ! My fault !
Here is the complete config :
<bean id="Datasource" class="com.ao.springframework.webflow.samples.phonebook.orm.XmlDbImpl">
<constructor-arg...
Hi !
I've got quite a strange problem. Here is my xml config file :
<bean id="Datasource" class="com.ao.springframework.webflow.samples.phonebook.orm.XmlDbImpl">
<constructor-arg index="0">...
Hi,
I got a class XmlDAo that implement IPersonDAO ok ?
public class XmlDao implements IPersonDAO
I got another class that recevied a IPersonDAO as a an argument, at build
I don't realy know how buti solved it ...
Hi,
I modified the phonebook to add my own implementation of the PhoneBook interface. I change the bean's class in the xml file to the new class file.
At run time, I have a log in tomcat...
Well that's force me to replace the service-layer.xml file, isn't it ?
My goals is actually to change the implementation without any change to the phonebook package... Is there no way to override...
Hi everyone,
I've decided to add a DAO/ORM layer to the phonebook. In this context i decided to use spring-core to glue together my dao with the app, without any modification to the app.
I can...
Forget it...
My question was silly, i just had to change ../liferay to ./liferay in the liferay.xml file.
Sorry, that's one was pretty obvious.
Hi,
I wanted to try the portlet version of the phone book samples relaeased here .
Howerver, i got some trouble not with the example but when i deploy the portlet container , LifeRay, into...
IMPORTANT: Earlier versions of Ivy (including 1.1) will NOT work with this build system!
:shock: even 1.1 ! ! ! That really what i called a Pre Released ! ! ! :wink:
BUILD SUCCESSFUL...
:shock:
I believe i've followed it quite honestly...
I admit, it's more easier to import the project into eclipse and then to deploy it however i would like why it failed in the command...
Hi !
I just got the Webflow PR 5 and i have trouble with the phonebook sample. Here is how it failed :
BUILD FAILED
C:\Documents and...
Ok.
To realize an interception i should have done this:
<beans>
<!-- my simple an naive bean, unaware of the fact that it's going to be intercepted. -->
<bean id="guiImpl"...
Okay.
I used AppContext to build my beans :
public static void main(String[] args)
{
ApplicationContext cxt = new FileSystemXmlApplicationContext(configFile);
IGUI winApp =...
That failed too... There must something wrong...
My spring core build the following beans :
<bean id="gui" class="com.AO.SpringAppContext.GUI.HelloWorldClass" autowire="byType"/>
<bean...
Hi everyone,
I tried to realize a very simple interception. My interceptor bean is created
but my interceptor is never call. I want to intercept , with a before advice method, any to call to ...
perfect, ... All i wanted and even more.... Thank you++
There is a last thing I wonder about those context loading : in what sens are they Hierarchical ?
The way I see it, it means, that you can access the context of a diffrent layer easily ( let's...
Okay i get it...
You can get the context if your class if application context aware, and then use it programmaticly.
Moreover, those context are defined in a Spring's XML files ( i believe it used...
Given i'm quite new to both tomcat and spring, it may be a silly question : but how my code choose the proper context ? Do I have to do it programmaticly or just map some page to some context ?
This quote comes from the reference manual, but i've failed to find some description on how to do so.. (it should have been 3.12.4 but there no ToDo marks there, so I wonder if the doc is not...