Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

upgraded to spring 3.2 but mail has seemingly disappeared?

Just upgraded to spring3.2 - but mail has disappeared AFAIK.

It is not mentioned in the offical guide.Where has it gone :

where has it gone

My pom look like this : soring-core

everything else works for me except cache manager, but there is an explanation for that.

like image 211
NimChimpsky Avatar asked Feb 19 '23 02:02

NimChimpsky


1 Answers

I needed this additional jar, same as ehcache support (but not mentioned in guide ?)

 <dependency>
   <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>3.2.0.RELEASE</version>
 </dependency>
like image 191
NimChimpsky Avatar answered Mar 04 '23 01:03

NimChimpsky