konakart-logging.properties specifies the default properties of the log4j logger which determines what is displayed in the console. What I'm not able to do is eclipse debugging (and I see "(Unknown Source)" in stack traces from many other posts so I know I'm not the only one). Here is an example:
1) I set a break point in ShowCartItemsAction.java > the first line of code within the execute method.
2) I start tomcat NOTE: breakpoints work fine in KKGWTServiceImpl.java when tomcat starts (no problem there)
3) I navigate to
http://localhost:8780/konakart , then navigate to the cart
4) The following exception occurs:
A default customer cannot be found. You must create one using the Admin App.
at com.konakart.bl.OrderMgr.createOrderWithOptions(Unknown Source)
at com.konakart.app.KKEng.createOrderWithOptions(Unknown Source)
at com.konakart.app.KKEng.createOrderWithOptions(Unknown Source)
at com.konakart.actions.ShowCartItemsAction.createTempOrder(Unknown Source)
at com.konakart.actions.ShowCartItemsAction.execute(Unknown Source)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
My concern is not so much about this exception, but the fact that I do not hit the breakpoint that I installed on ShowCartItemsAction.