Hi, thank you very much for you reply.
actually i did try out for annotating controller, it does not work. but it is working fine in service interface and service implementation.
the reason i...
Type: Posts; User: ewawong; Keyword(s):
Hi, thank you very much for you reply.
actually i did try out for annotating controller, it does not work. but it is working fine in service interface and service implementation.
the reason i...
Hi guys,
i planned to use spring security in my spring application. i have tried the method security expression authorization in service object method and DAO object method, it works fine. But it...
hi malarcon,
it's ok, no problem :)
i just briefly went though the latest site suggest by you, it's information looks so useful and helpful.......... thank you once again :)
Hi guys,
i went through several sample spring framework applications, i saw most it their configuration files and message properties files are located inside the classpath. do you guys know...
Dear malarcon,
Thanks a lot for the your reply and suggestion, i'll try it out :)
Hi, guys
just tried out the spring security, i finished following the guide and everything works fine.
but i have a problem here, if inside the login page i have same extra parameter for...
Hi guys
i just finished the guide of "Spring Security - Tutorial: Adding Security to Spring Petclinic"
http://static.springsource.org/spring-security/site/petclinic-tutorial.html
but i am...
Hi, guys
i already solved the problem, after i excluded the class in xxx-servlet.xml. it works fine.
<context:component-scan base-package="levelup.world.web">
<context:exclude-filter...
Hi guys,
i have a situation here, let's say i am having several deployment in my project. one of the action path in the core deployment is map with a controller for example
path :...
Hi guys,
i am facing a problem of getting the context path including the "deploy folder"
here is my web-app structure:
web-app/iserp-webapp-1.0/
my url mapping
Hi guys,
i have a option tag as follow:
<form:select path="customerId">
<option value="${customer.customerId}"selected="selected">${customer.customerId}</option>
Hi guys,
when i start up tomcat, my war fail to be deploy due to the following exception in localhost.log..
Aug 11, 2009 6:57:41 PM org.apache.catalina.core.StandardContext listenerStart...
Hi unnisworld,
Thank you very much for your advice, it really works :) thanks alot
Regards
Hi guys,
is me again, i get this exception when is try to set an object B in to object A and try to persist the object A
here is my code :
package com.isolu.iserp.entity;
hi,
my unit test is able to go through if i used the
@GeneratedValue(strategy=GenerationType.TABLE)
but with one extra condition, i need to put the following configuration:
hi guys,
i alr tried "@GeneratedValue(strategy=GenerationType.AUTO)" it still show throw me the same error message.
i checked my mysqldb, actually the table is created successfully, but somehow...
hi,
i have tried everything things that you ask me to try, but i am still having the same problem
but in my eclipse console show the the create and insert query, as follow
:
SCHEMA:...
here it is :
package com.isolu.iserp.dao.hibernate;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import...
hi,
yes i am using properties file in the webapp, but i am using "configuration.setProperty()" in unit test only. actually i tried to put the configuration into the applicationContext.xml. but it...
hi dr_pompeii, thanks you very much for your reply
thanks for your advice for the dialect, but after i corrected the dialect, it still showing the same exception
here is my corrected code
...
Hi guys,
i just started to learn spring for two weeks ago, but while following some guide book. the guide book is using hsqldb. so in my application, everything works fine, until i switch to the...
hi juanmanuel32, thanks for your reply. after i add the jar file into my classpath it works fine. i checked back the guide, actually the guide did mention about it, but i just overlooked...
hi guys,
i am totally new in spring framework(i just started one week ago).
i am trying to follow the guide in "MVC step by step", inside the document folder. I followed until chapter 5...