我想使用Javamail在我的Java Web-App中发送邮件。对于初次试用,我使用本网站上的教程:http://zetcode.com/tutorials/jeetutorials/sendingemail/
我逐字复制代码。我的buildpath中有最新的Javamail jar文件。我有一个谷歌邮件,所以gmail服务器默认对我来说很酷。
所以我的代码看起来与链接中的代码完全一样。
当我尝试发送邮件时,我总是得到EmailServlet不可用的错误。但是如果我在doGet或doPost中尝试一个简单的代码文件,它就可以了!它只是不能使用该代码。
我也尝试了其他教程,但问题总是一样。
知道问题是什么吗?
谢谢!
Web.xml中:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Handwerker</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>