How to set email notification using struts.Plz give the
example code?
Answers were Sorted based on User's Feedback
Answer / vijay satlawar
There is no seperate mechanism in struts to send mail.
To send mails you need to use mail API by downloadimg mail.jar.
This needs SMTP port to be enabled in the system which needs
to send mail alerts.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / achappan
It is not a correct solution for Email-notification
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / anas
Solution is to implement an email notification system. The
notification system will generate an email message whenever
the application detects an error. If you are already using
a standard logging framework like log4j.
import java.util.logging.*;
public class JDKLoggingExample
{
private static final Logger log =
Logger.getLogger(JDKLoggingExample.class.getName());
public static void main(String[] args)
{
try
{
log.fine("This is a fine message.");
int i = Integer.parseInt("Hello world");
}
catch (java.lang.Exception ex)
{
log.log(Level.SEVERE, "Caught an exception",
ex);
}
}
---------------------------------------------------------
import org.apache.log4j.*;
public class Log4jExample
{
private static final Logger log =
Logger.getLogger(Log4jExample.class);
public static void main(String[] args)
{
try
{
log.debug("This is a debug message.");
int i = Integer.parseInt("Hello world");
}
catch (java.lang.Exception ex)
{
log.error("Caught an exception", ex);
}
}
}
| Is This Answer Correct ? | 3 Yes | 11 No |
How interceptor works in struts 2?
When should we use SwtichAction?
Give an example where struts tiles may be used?
when we enter the data in the form how it is stored in formbean class setter and getter methods?
Which technologies can be used at view layer in struts?
Which library is provided by struts for form elements like check boxes, text boxes etc?
How action mapping is configured in Struts?
Is struts action class singleton?
What do you mean by dynaactionform?
what is request processor class ?
Hi Friends, am new to struts.I read that " you can store variables in xml file(properties file) and for future enhancements we just call properties file . Now i want to implement this , where can i call properties file to enhance my application. My question is where this properties file will be called.
What is http redirect?