전체 글 (318) 썸네일형 리스트형 나의 전자책 출간 경험기 - 정태환 201306나의전자책출판경험기 from 태환 정 http://www.slideshare.net/ssusera0c6bc/201306-23349856 OKJSP 정기모임 2013/07/18http://www.okjsp.net/seq/224951 chap06 HelloController.java chap06 HelloController.javalibcommons-loggingspring-beansspring-context : stereotype.Controllerspring-expressionspring-web : bind.annotation.RequestMappingspring-webmvc : web.servlet.ModelAndView HTTP Status 500 - Servlet.init() for servlet dispatcher threw exception HTTP Status 500 - Servlet.init() for servlet dispatcher threw exceptiontype Exception reportmessage Servlet.init() for servlet dispatcher threw exceptiondescription The server encountered an internal error (Servlet.init() for servlet dispatcher threw exception) that prevented it from fulfilling this request.exceptionjavax.servlet.ServletException: Servlet.init() for servlet dispatcher threw exce.. commons-logging-*.jar SEVERE: Exception starting Context with name [/chap06_]org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/chap06_]]at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:154)at org.apache.catalina.core.StandardContext.reload(StandardContext.java:3919)at org.apache.catalina.loader.WebappLoader.background.. HTTP Status 500 - org/springframework/beans/factory/Aware HTTP Status 500 - org/springframework/beans/factory/Awaretype Exception reportmessage org/springframework/beans/factory/Awaredescription The server encountered an internal error (org/springframework/beans/factory/Aware) that prevented it from fulfilling this request.exceptionjava.lang.NoClassDefFoundError: org/springframework/beans/factory/Aware java.lang.ClassLoader.defineClass1(Native Method) .. HTTP Status 500 - org/springframework/core/env/EnvironmentCapable HTTP Status 500 - org/springframework/core/env/EnvironmentCapabletype Exception reportmessage org/springframework/core/env/EnvironmentCapabledescription The server encountered an internal error (org/springframework/core/env/EnvironmentCapable) that prevented it from fulfilling this request.exceptionjava.lang.NoClassDefFoundError: org/springframework/core/env/EnvironmentCapable java.lang.ClassLoa.. List 6.1 HelloController.java List 6.1 HelloController.java package com.tistory; import java.util.Calendar; import org.springframework.sterotype.Controller import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; @Controller public class HelloController { @RequestMapping("/hello.do") { public ModelAndView hello() { ModelAndView mav = new ModelAndView(); mav.setViewNa.. syntaxhighlighter package tutorial; import com.opensymphony.xwork2.ActionSupport; public class HelloWorld extends ActionSupport { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public String execute() { name = "Hello, " + name + "!"; return SUCCESS; } } 이전 1 ··· 35 36 37 38 39 40 다음