spring-reference in spring dist is a very good tutorial to start
Type: Posts; User: isyak; Keyword(s):
spring-reference in spring dist is a very good tutorial to start
Spring petclinic sample is a good place to start. :rolleyes:
It comes with spring distribution
org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'tilesConfigurer' defined in ServletContext resource [/WEB-INF/springmvc-servlet.xml]: Invocation of init...
Hi all,
is springmail support TLS authentication?
if yes, can u pls post the configuration file.
thanks
Hi kenpe,
i search in forum and find out there is a similar stacktrace ini this thread
http://forum.springframework.org/archive/index.php/t-36587.html
hope this can help u.
Hi Kenpe,
i'm really confuse with your issue :confused:
what bea weblogic version you use? i mean the minor 10.1 / 10.2 / 10.3
try to upgrade or downgrade the version.
for 10.3 it's still on...
Can u post the complete stacktrace?
u need javaassist jar
http://www.csg.is.titech.ac.jp/~chiba/javassist/
hi,
can u post your configuration file
Hi Brian,
i also encounter this problem that time,
this my workaround
<bean id="xmlBeansHibernateInterceptor" class="com.autotrader.spl.dao.XmlBeansHibernateInterceptor">
...
hi, maybe can see jboss rules
it's a rule engine
The error is on this line :
returnedResults.put(ucName, Integer.valueOf(updateCount));
since you are using jdk 1.4.2
then Integer.valueOf(int) is not available.
it is only available on...
how much memory do you allocate for the tomcat? (-Xms, -Xmx)
maybe u must perform jvm parameter tuning
for database replication, i think better to use database replication feature rather than using transaction management.
Using database replication will perform better.
Refer to Mark Fisher's Blog about Spring + JPA
http://blog.springframework.com/markf/archives/2006/05/30/getting-started-with-jpa-in-spring-20/
Hope can help you :)
I just curious how to implement spring-batch.
what is the best practice between
running the batch inside the container / batch will run as standalone application?
Hibernate criteria is specific to Hibernate only.
And JPA will definitly can't access that.
using JPA, you can easily change your ORM into other product that have JPA implementation e.g. Hibernate, Toplink, etc.
Maybe u can try using commons-dbcp?
this the sample configuration :
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property...
hi yaku0002,
maybe u can try to look at Spring JDBCTemplate ?
yes u initialize the testservice
but the nullpointer is shown @ testaction
public String test1() throws Exception{ //line of 15
test.validate();
return null;
}
Hi, i try to answer some of your question :
>> It is possible to move Spring components to different application servers?
Yes definitly no problem, i already try same application move from BEA...
JDK5 comes with a monitoring tools?
JConsole if i'm not mistaken.
Hope this can help u
if i'm not mistaken
using 2 database must use a JTATransactionManager
yes i use declarative transaction.
we also implement JMS, so the process of writing to database will perform asynchronously. This the xml to perform writing the database :
<bean...