Я отправляю электронные письма с javamail без проблем (я использую EJB 3.0), проблема в том, когда я пытаюсь добавить изображение в html, используя многоэлементный подход.По какой-то причине я получаю FileNotFoundException.Я не знаю, как получить путь к изображению .png, которое находится в WEB-INF / resources / images.
Вот что я сделал:
Message message = new MimeMessage(mailSession);
// From: is our service
message.setFrom(new InternetAddress(from));
// To: destination given
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
message.setSubject("Uspijesna registracija");
// How to found at http://www.rgagnon.com/javadetails/java-0321.html
message.setContent(generateActivationLinkTemplate(), "text/html");
Date timeStamp = new Date();
message.setSentDate(timeStamp);
// Prepare a multipart HTML
Multipart multipart = new MimeMultipart("related");
// Prepare the HTML
BodyPart htmlPart = new MimeBodyPart();
htmlPart.setContent(generateActivationLinkTemplate(), "text/html");
multipart.addBodyPart(htmlPart);
// PREPARE THE IMAGE
BodyPart imgPart = new MimeBodyPart();
DataSource ds = new FileDataSource("logomailtemplate.png");
imgPart.setDataHandler(new DataHandler(ds));
imgPart.setHeader("Content-ID", "the-img-1");
multipart.addBodyPart(imgPart);
// Set the message content!
message.setContent(multipart);
Transport.send(message);
Текст идетиз другого метода, который работает правильно.Я думаю, что проблема в этой строке кода:
DataSource ds = new FileDataSource ("logomailtemplate.png");
Это то, что говорит консоль:
java.io.FileNotFoundException: logomailtemplate.png (система не может найти указанный файл)
Как я могу получить доступ к этому изображению?Он находится в WEB-INF / resources / images. Я застрял в день ожидания с этим плохо оценивающим хендлом:)
-----------------------------------ОБНОВИТЬ-------------------------------
Message message = new MimeMessage(mailSession);
// From: is our service
message.setFrom(new InternetAddress(from));
// To: destination given
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
message.setSubject("Uspijesna registracija");
// How to found at http://www.rgagnon.com/javadetails/java-0321.html
message.setContent(generateActivationLinkTemplate(), "text/html");
Date timeStamp = new Date();
message.setSentDate(timeStamp);
// Prepare a multipart HTML
Multipart multipart = new MimeMultipart();
// Prepare the HTML
BodyPart htmlPart = new MimeBodyPart();
htmlPart.setContent(generateActivationLinkTemplate(), "text/html");
multipart.addBodyPart(htmlPart);
// PREPARE THE IMAGE
BodyPart imgPart = new MimeBodyPart();
String fileName = "WEB-INF/resources/images/logoemailtemplate.png";
InputStream stream = null;
ClassLoader classLoader = Thread.currentThread()
.getContextClassLoader();
if (classLoader == null) {
classLoader = this.getClass().getClassLoader();
}
stream = classLoader.getResourceAsStream(fileName);
DataSource ds = new ByteArrayDataSource(stream, "image/*");
imgPart.setDataHandler(new DataHandler(ds));
imgPart.setHeader("Content-ID", "the-img-1");
multipart.addBodyPart(imgPart);
// Set the message content!
message.setContent(multipart);
Transport.send(message);
------------------------------------------STACK TRACE -----------------------------------
ВНИМАНИЕ: StandardWrapperValve [Servlet Faces]: PWC1406: Servlet.service () для сервлета Faces Servlet вызвал исключение javax.faces.el.EvaluationException: javax.ejb.EJBException ................
SEVERE: javax.ejb.EJBException javax.faces.el.EvaluationException: javax.ejb.EJBException at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke (MethodBindingMethodExpressionAdapter.japp.Imp.Imp.processAction (ActionListenerImpl.java:102) в javax.faces.component.UICommand.broadcast (UICommand.java:315) в javax.faces.component.UIViewRoot.broadcastEvents (UIViewRoot.java:775) в javax.facesRot.processApplication (UIViewRoot.java:1267) в com.sun.faces.lifecycle.InvokeApplicationPhase.execute (InvokeApplicationPhase.java:82) в com.sun.faces.lifecycle.Phase.doPhase (Phase.java:101) в com.sun.faces.lifecycle.LifecycleImpl.execute (LifecycleImpl.java:118) в javax.faces.webapp.FacesServlet.service (FacesServlet.java:312) в org.apache.catalina.core.StandardWrapper.service (StandardWrapper.java: StandardWrapper.java) в org.apache.catalina.core.StandardWrapperValve.invoke (StandardWrapperValve.java:279) в org.apache.catalina.core.StandardContextValve.invoke (StandardContextValve.java:188) в org.apache.ina.вызвать (StandardPipeline.java:641) на com.sun.enterprise.web.WebPipeline.invoke (WebPipeline.java:97) на com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke (PESessionLockingStandardPipeline.java:apache или org).catalina.core.StandardHostValve.invoke (StandardHostValve.java:185) в org.apache.catalina.connector.CoyoteAdapter.doService (CoyoteAdapter.java:325) в org.apache.catalina.connector.CoyoteAdapter.service (CoyoteAdapter.java:226) в com.sun.enterprise.v3.services.impl.ContainerMapper.service (ContainerMapper.java:165) в com.sun.grizzly.http.ProcessorTask.invokeAdapter (ProcessorTask.java:791) в com.sun.grizzly.http.ProcessorTask.doProcess (ProcessorTask.java:693) в com.sun.grizzly.http.ProcessorTask.process (ProcessorTask.java:954) в com.sun..grizzly.http.DefaultProtocolFilter.execute (DefaultProtocolFilter.java:170) при com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter (DefaultProtocolChain.java:135) при com.sun.grizzly.DefaultProtocolChain.execute (DefaultProtocolChain.java:102) вcom.sun.grizzly.DefaultProtocolChain.execute (DefaultProtocolChain.java:88) по адресу com.sun.grizzly.http.HttpProtocolChain.execute (HttpProtocolChain.java:76) по адресу com.sun.grizzly.ProtocolChainContextTavak.in.Call.53) на com.sun.grizzly.SelectionKeyContextTask.call (SelectionKeyContextTask.java:57)в com.sun.grizzly.ContextTask.run (ContextTask.java:69) в com.sun.grizzly.util.AbstractThreadPool $ Worker.doWork (AbstractThreadPool.java:330) в com.sun.grizzly.util.AbstractThreadPool $ Worker.run (AbstractThreadPool.java:309) в java.lang.Thread.run (Thread.java:662) Вызывается: javax.ejb.EJBException в com.sun.ejb.containers.BaseContainer.processSystemException (BaseContainer.java:5119) на com.sun.ejb.containers.BaseContainer.completeNewTx (BaseContainer.java:5017) на com.sun.ejb.containers.BaseContainer.postInvokeTx (BaseContainer.java:4805) на com.sun.ejb.containers.BaseContainer.postInvoke (BaseContainer.java:2004) на com.sun.ejb.containers.BaseContainer.postInvoke (BaseContainer.java:1955) на com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke (EJBLocalObjectInjococ.ejb.containers.EJBLocalObjectInvocationHandlerDelegate.invoke (EJBLocalObjectInvocationHandlerDelegate.java:84) в $ Proxy162.sendAccountActivationLinkToBuyer (неизвестный источник) в managedbeans.RegistrationController.doRegisterBuyer (RegistrationController.java:64) в sun.reflect.NativeMethodAccessorImpl.invoke0 (родной метод) в sun.reflect.NativeMethodAccessorImpl.invoke (собственный путьJava: 25) на java.lang.reflect.Method.invoke (Method.java:597) на com.sun.el.parser.AstValue.invoke (AstValue.java:234) на com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297) в org.jboss.weld.util.el.ForwardingMethodExpression.invoke (ForwardingMethodExpression.java:43) в org.jboss.weld.el.WeldMethodExpression.invoke: WeldMet.sun.faces.facelets.el.TagMethodExpression.invoke (TagMethodExpression.java:98) по адресу javax.faces.component.MethodBindingMethodExpressionAdapter.invoke (MethodBindingMethodExpressionAdapter.java:88) ... еще 32 *
: 1029 *: 1029 *.lang.NullPointerException at javax.mail.util.ByteArrayDataSource. (ByteArrayDataSource.java:83) aт ejbs.EmailServiceEJB.sendAccountActivationLinkToBuyer (EmailServiceEJB.java:69) при sun.reflect.NativeMethodAccessorImpl.invoke0 (нативный метод) при sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) в sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java: 25) в java.lang.reflect.Method.invoke (Method.java:597) в org.glassfish.ejb.security.application.EJBSecurityManager.runMethod (EJBSecurityManager.java:1056) в org.glassfish.ejb.security.application.в com.sun.ejb.containers.interceptors.AroundInvokeChainImpl.invokeNext (InterceptorManager.java:797) в com.sun.ejb.EjbInvocation.proceed (EjbInvocation.java:567) в org.jboss.weld.(SessionBeanInterceptor.java:47) в sun.reflect.NativeMethodAccessorImpl.invoke0 (собственный метод) в sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) в sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpho.ava.j.v.fl. java) jjJava: 597) на com.sun.ejb.containers.interceptors.AroundInvokeInterceptor.intercept (InterceptorManager.java:858) на com.sun.ejb.containers.interceptors.AroundInvokeChainImpl.invokeNext (InterceptorManager.java:79).ejb.EjbInvocation.proceed (EjbInvocation.java:567) в com.sun.ejb.containers.interceptors.SystemInterceptorProxy.doAround (SystemInterceptorProxy.java:157)в com.sun.ejb.containers.interceptors.SystemInterceptorProxy.aroundInvoke (SystemInterceptorProxy.java:139)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (собственный метод)
at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25)
в java.lang.reflect.Method.invoke (Method.java:597)
в com.sun.ejb.containers.interceptors.AroundInvokeInterceptor.intercept (InterceptorManager.java:858)
в com.sun.ejb.containers.interceptors.AroundInvokeChainImpl.invokeNext (InterceptorManager.java:797)
в com.sun.ejb.containers.interceptors.InterceptorManager.intercept (InterceptorManager.java:367)
на com.sun.ejb.containers.BaseContainer .__ intercept (BaseContainer.java:5264)
на com.sun.ejb.containers.BaseContainer.intercept (BaseContainer.java:5252)
в com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke (EJBLocalObjectInvocationHandler.java:190)
... еще 45
----------------------------------- ОБНОВЛЕНИЕ 2 ---------- -------------------------------
String fileName = "/WEB-INF/resources/images/logoemailtemplate.png";
InputStream stream = null;
ClassLoader classLoader = Thread.currentThread()
.getContextClassLoader();
if (classLoader == null) {
classLoader = this.getClass().getClassLoader();
}
//This line dont work!
stream = classLoader.getResourceAsStream(fileName);
DataSource ds = new URLDataSource(classLoader.getResource(fileName));
// DataSource ds = новый FileDataSource (новый файл (classLoader
// .getResource (fileName) .toURI ())); Также не работает. Также я попробовал как / и без /