This is my WelcomeAction
Class
package com.codinghazard.actions;
public class WelcomeAction {
private String operandA;
private String operandB;
private Character operator;
private int sum;
public String execute() {
if ((operandA!="") && (operandB!=""))
{
int a=Integer.parseInt(operandA);
int b=Integer.parseInt(operandB);
switch (operator)
{
case '1':
sum=a+b;
break;
case '2':
sum=a-b;
break;
case '3':
sum=a*b;
break;
case '4':
try
{
sum=a/b;
}
catch(ArithmeticException ae)
{
return "ERROR";
}
break;
}
return "SUCCESS";
}
return "ERROR";
}
public String getOperandA() {
return operandA;
}
public void setOperandA(String operandA) {
this.operandA = operandA;
}
public String getOperandB() {
return operandB;
}
public void setOperandB(String operandB) {
this.operandB = operandB;
}
public Character getOperator() {
return operator;
}
public void setOperator(Character operator) {
this.operator = operator;
}
public int getSum() {
return sum;
}
public void setSum(int sum) {
this.sum = sum;
}
}
this is my struts.xml
file
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<!-- http://localhost:8080/test/user/login -->
<package name="user" namespace="/user" extends="struts-default">
<action name="calculator">
<interceptor-ref name="timer" />
<result>pages/Calculator.jsp</result>
</action>
<action name="Welcome" class="com.codinghazard.actions.WelcomeAction">
<%--
<interceptor-ref name="timer" />
--%>
<result name="SUCCESS">pages/Result.jsp</result>
<result name="ERROR">pages/error.jsp</result>
</action>
</package>
</struts>
I tried to user interceptor but when I uncomment it NullPointerException
is thrown. I am new to Struts2 and trying to get an understanding. I am on the topic of interceptors and learning from this tutorial.