| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 826 人关注过本帖
标题:着急 jsp求助
只看楼主 加入收藏
dadongzicool
Rank: 6Rank: 6
等 级:贵宾
威 望:11
帖 子:209
专家分:474
注 册:2009-3-20
结帖率:100%
收藏
已结贴  问题点数:0 回复次数:2 
着急 jsp求助
org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 1 in the generated java file
The type javax.mail.PasswordAuthentication cannot be resolved. It is indirectly referenced from required .class files

An error occurred at line: 91 in the jsp file: /messageboard/suggestionbox.jsp
Session cannot be resolved to a type
88:     while (RSEmails.next()) {
89:         try {
90:             Properties props = new Properties(); //创建属性对象
91:             Session sendMailSession; //创建对话对象
92:             Store store;
93:             Transport transport; //创建传输对象
94:             PopupAuthenticator popAuthenticator =


An error occurred at line: 92 in the jsp file: /messageboard/suggestionbox.jsp
Store cannot be resolved to a type
89:         try {
90:             Properties props = new Properties(); //创建属性对象
91:             Session sendMailSession; //创建对话对象
92:             Store store;
93:             Transport transport; //创建传输对象
94:             PopupAuthenticator popAuthenticator =
95:                 new PopupAuthenticator();


An error occurred at line: 93 in the jsp file: /messageboard/suggestionbox.jsp
Transport cannot be resolved to a type
90:             Properties props = new Properties(); //创建属性对象
91:             Session sendMailSession; //创建对话对象
92:             Store store;
93:             Transport transport; //创建传输对象
94:             PopupAuthenticator popAuthenticator =
95:                 new PopupAuthenticator();
96:             PasswordAuthentication pop =


An error occurred at line: 96 in the jsp file: /messageboard/suggestionbox.jsp
PasswordAuthentication cannot be resolved to a type
93:             Transport transport; //创建传输对象
94:             PopupAuthenticator popAuthenticator =
95:                 new PopupAuthenticator();
96:             PasswordAuthentication pop =
97:                 popAuthenticator.performCheck("zhaoruyi", "euyi8401");
98:             sendMailSession =
99:                 Session.getInstance(props, popAuthenticator);


An error occurred at line: 99 in the jsp file: /messageboard/suggestionbox.jsp
Session cannot be resolved
96:             PasswordAuthentication pop =
97:                 popAuthenticator.performCheck("zhaoruyi", "euyi8401");
98:             sendMailSession =
99:                 Session.getInstance(props, popAuthenticator);
100:             //对话目标
101:             props.put("mail.smtp.host", "smtp.nlsde.buaa.);
102:             //设置对话对象


An error occurred at line: 104 in the jsp file: /messageboard/suggestionbox.jsp
Message cannot be resolved to a type
101:             props.put("mail.smtp.host", "smtp.nlsde.buaa.);
102:             //设置对话对象
103:             props.put("mail.smtp.auth", "true"); //设置smtp身份认证
104:             Message newMessage = new MimeMessage(sendMailSession);
105:             //创建信息对象
106:             //newMessage.setFrom(
107:             //new InternetAddress(


An error occurred at line: 104 in the jsp file: /messageboard/suggestionbox.jsp
MimeMessage cannot be resolved to a type
101:             props.put("mail.smtp.host", "smtp.nlsde.buaa.);
102:             //设置对话对象
103:             props.put("mail.smtp.auth", "true"); //设置smtp身份认证
104:             Message newMessage = new MimeMessage(sendMailSession);
105:             //创建信息对象
106:             //newMessage.setFrom(
107:             //new InternetAddress(


An error occurred at line: 109 in the jsp file: /messageboard/suggestionbox.jsp
InternetAddress cannot be resolved to a type
106:             //newMessage.setFrom(
107:             //new InternetAddress(
108:             //(String)session.getAttribute("EmailAddress")));
109:             newMessage.setFrom(new InternetAddress("eims@));
110:             //发送者
111:             newMessage.setRecipient(
112:                 Message.RecipientType.TO,


An error occurred at line: 112 in the jsp file: /messageboard/suggestionbox.jsp
Message.RecipientType.TO cannot be resolved to a type
109:             newMessage.setFrom(new InternetAddress("eims@));
110:             //发送者
111:             newMessage.setRecipient(
112:                 Message.RecipientType.TO,
113:                 new InternetAddress(
114:                     RSEmails.getString("EmailAddress")));
115:             //接受者


An error occurred at line: 113 in the jsp file: /messageboard/suggestionbox.jsp
InternetAddress cannot be resolved to a type
110:             //发送者
111:             newMessage.setRecipient(
112:                 Message.RecipientType.TO,
113:                 new InternetAddress(
114:                     RSEmails.getString("EmailAddress")));
115:             //接受者
116:             newMessage.setSubject("新的意见箱消息!");


An error occurred at line: 122 in the jsp file: /messageboard/suggestionbox.jsp
Transport cannot be resolved
119:             newMessage.setText(EmailMessage); //邮件内容
120:             transport = sendMailSession.getTransport("smtp");
121:             //实例化传输对象
122:             Transport.send(newMessage); //发送邮件
123:             TheMessage = "您的意见建议已提交成功,您可以填写新意见建议";
124:         }
125:         catch (MessagingException m) {


An error occurred at line: 125 in the jsp file: /messageboard/suggestionbox.jsp
MessagingException cannot be resolved to a type
122:             Transport.send(newMessage); //发送邮件
123:             TheMessage = "您的意见建议已提交成功,您可以填写新意见建议";
124:         }
125:         catch (MessagingException m) {
126:             System.err.println(m);
127:             TheMessage = "您的意见建议已提交成功,但通知邮件未能正常发送!";
128:         }


An error occurred at line: 126 in the jsp file: /messageboard/suggestionbox.jsp
m cannot be resolved
123:             TheMessage = "您的意见建议已提交成功,您可以填写新意见建议";
124:         }
125:         catch (MessagingException m) {
126:             System.err.println(m);
127:             TheMessage = "您的意见建议已提交成功,但通知邮件未能正常发送!";
128:         }
129:     }


Stacktrace:
    org.apache.(DefaultErrorHandler.java:92)
    org.apache.(ErrorDispatcher.java:330)
    org.apache.(JDTCompiler.java:423)
    org.apache.(Compiler.java:317)
    org.apache.(Compiler.java:295)
    org.apache.(Compiler.java:282)
    org.apache.jasper.(JspCompilationContext.java:586)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    cn.edu.buaa.nlsde.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:170)

求助  懂得  留下个Q  谢谢  弄了半天了  没弄出来
搜索更多相关主题的帖子: java 
2011-04-02 14:07
蓝色石头
Rank: 2
等 级:论坛游民
帖 子:13
专家分:70
注 册:2009-9-17
收藏
得分:0 
javaMail 发邮件?
2011-04-07 14:14
HarrisonWang
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:16
专家分:155
注 册:2011-4-7
收藏
得分:20 
错误写的很明显了,你的JSP没有编译成功。
1、检查你的java源代码有没有错误。
2、确保工程下所有Java代码都有正常编译?
3、检查有没有缺少Jar包,或有没有Jar包冲突的状况。
上面没问题的话,就是你的tomcat的问题了。
1、检查你的工程有没有成功的部署到Tomcat webapps下,jar包是否全部部署到WEB-INF\lib下面了。
2、检查TOMCAT_HOME\work\Catalina\localhost\your project 下是否有jsp编译后的class文件。
上面还不能解决的话,重装下tomcat吧,再不行,估计就是你JDK的问题了。

2011-04-07 22:23
快速回复:着急 jsp求助
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013178 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved