刷新资源并更新页面,而不重新启动glassfish服务器

n53p2ov0  于 2021-07-13  发布在  Java
关注(0)|答案(0)|浏览(222)

所以我学习Spring,我不能解决这个问题。
这是我的 HelloController 即使这并不重要,nvm:

@Controller
public class HelloController {

@RequestMapping(value = "/hello_world", method = RequestMethod.GET)
public String printHelloWorld(ModelMap modelMap){

    // add attribute to load modelMap
    modelMap.addAttribute("message",
             "Hello world");//when i try to change this message every time i need to restart gf 
  server so i can see changes

    // return the name of the file to be loaded "hello_world.jsp"
    return "hello_world";
}

}

我尝试的是:在regitry我做了标记 compiler.automake.allow.when.app.running 同样在gf配置中,我在“更新”操作中 Update classes and resources ,与“帧上停用”相同。自动生成项目也被标记。
还是不行。我必须重新启动服务器才能看到新内容。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题