Re: [S2]All the methods with "get" prefix are invoked

2009-09-09 Thread Gábor Kovács
Hi Dennis, You are right! Thank you very much! Gábor

Re: [S2]All the methods with "get" prefix are invoked

2009-09-09 Thread Denis Cabasson
Hi, The debug tag is "inspecting" the status of your action to build its HTML output, which include knowing the value of test1, and thus calling the corresponding getter. Take out the debug tag, and everything should be back to normal. Denis. Gábor Kovács a écrit : Hi everyone, I'm confus

[S2]All the methods with "get" prefix are invoked

2009-09-09 Thread Gábor Kovács
Hi everyone, I'm confused, because I don't understand this problem: I've made a simple Struts2 project. Here are the codes (they're short) ACTION CLASS --- package test.action; import com.opensymphony.xwork2.ActionSupport; public class TestAction extends ActionSupport{