Anytime you change a Java file you have to restart the server to make the changes effective.
On Jul 12, 7:59 am, decitrig <[email protected]> wrote: > I have this controller set up right now, using Spring MVC 3.0: > > @Controller > public class HelloController { > > @RequestMapping("/hello.htm") > public String hello() { > return "helloView"; > } > > } > > It works fine - navigating to that link tries to call up the helloView > view. However, if I want to make a change (like switching the return > value to "helloView1") I have to stop and restart the process in > Eclipse. Making changes to e.g. index.jsp in the war/ directory are > refreshed just fine. Is there something special I need to do for > Spring? I'm just getting started with it & with GAE, so I'm probably > just doing something blinkered. Everything seems to *work* fine, I > just have to restart for changes to be displayed. > > -- > decitrig -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
