我需要创建一个小文件实用程序类来从Windows桌面运行命令行。但是,在查看了如何打包它之后,代码已经完成,它需要主应用程序中的自定义框架才能运行。不要问为什么这需要一段时间才能回答,只需将其作为一个有效的假设。
无论如何,现在他们想要一个jsp来调用这个类,但他们仍然希望它更像是一个单独的实用程序,即使它是主代码库的一部分。他们还希望它在实用程序中调用main方法,这对我来说听起来不是很好的设计,但他们不想将它更改为servlet类。
程序只接受一些参数,然后它基本上是对文件的一步操作,然后它就完成了。不是一个jsp类型的请求/响应场景,但我不是那个写需求的人。
从设计角度来看,有一种更好的方法可以为简单的实用程序应用程序执行此操作吗?
谢谢,
詹姆斯
答案 0 :(得分:3)
如果你真的无法改变设计,你可以直接导入类并调用它(只有当它在webapp的类路径中时才有效。)
YourMainClass.main(new String[] {"some", "arguments"});
或者生成一个进程并执行它(实际上不建议这样做,因为新进程会分配另一堆内存,这与服务器当前使用的内存一样多!)。
Runtime.getRuntime().exec("java -cp /path/to/root com.example.YourMainClass some arguments");
这两种方式都可以在 scriptlet (yuck)中完成,或者最好只在Servlet中完成。
答案 1 :(得分:2)
让main
方法调用服务/库方法。 JSP可以调用相同的服务/库方法。没有必要明确调用main
;从一开始就让它干净。
答案 2 :(得分:0)
T **他是我的JavaMail.java ** 它是包含主要方法的java类...
Public Class JavaMAil{
String d_email = "abc@gmail.com",//you email address
d_password = "XXXX", //your email password
d_host = "smtp.gmail.com",
d_port = "465",
m_to = "xyz@gmail.com ", // Target email address
m_subject = "Testing",
m_text = "Hey, this is a test email.";
public JavaMail() {
Properties props = new Properties();
props.put("mail.smtp.user", d_email);
props.put("mail.smtp.host", d_host);
props.put("mail.smtp.port", d_port);
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.auth", "true");
//props.put("mail.smtp.debug", "true");
props.put("mail.smtp.socketFactory.port", d_port);
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");
try {
SMTPAuthenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
MimeMessage msg = new MimeMessage(session);
msg.setText(m_text);
msg.setSubject(m_subject);
msg.setFrom(new InternetAddress(d_email));
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
Transport.send(msg);
} catch (Exception mex) {
mex.printStackTrace();
}
}
public static void main(String[] args) {
JavaMail blah = new JavaMail();
}
private class SMTPAuthenticator extends javax.mail.Authenticator {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(d_email, d_password);
}
}
}
**This is my mail.jsp**
And It is jsp it Invokes Main method from the class called JavaMail
<%@ page import="mail.JavaMail" %>
<%
JavaMail obj = new JavaMail();
%>