초보자가 감히 여기다 글을 올려도 될란지 모르겠네요..

as9864의 이미지

사실 에러 같은 경우 제가 찾고 공부 해야 되는 내용인데.. 실력이 부족해 여쭈어 봅니다,
local eclipse 환경에선 잘 돌아가던 것이 cafe24 호스팅 부분에서 연결 오류가 계속 나서. 해결을 못하고 있네요.
cafe24 에서도 답변을 해주곤 있지만 명확하게 시원한 답변이 없어서요.
정말 간곡히 부탁드립니다. 아시는분은 귀찮으시더라도 답변좀 부탁드립니다/

xml 부분입니다..
--------------------------------------
web.xml
---------------------------------------

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee <a href="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"" rel="nofollow">http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"</a> id="WebApp_ID" version="3.0"> 
  <display-name>Urban</display-name> 
  <context-param> 
    <param-name>webAppRootKey</param-name> 
    <param-value>study.root</param-value> 
  </context-param> 
  <context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value> 
/WEB-INF/dataAccessContext-local.xml 
/WEB-INF/applicationContext.xml 
</param-value> 
  </context-param> 
  <filter> 
    <filter-name>characterEncodingFilter</filter-name> 
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
    <init-param> 
      <param-name>encoding</param-name> 
      <param-value>UTF-8</param-value> 
    </init-param> 
    <init-param> 
      <param-name>forceEncoding</param-name> 
      <param-value>true</param-value> 
    </init-param> 
  </filter> 
  <filter-mapping> 
    <filter-name>characterEncodingFilter</filter-name> 
    <url-pattern>/*</url-pattern> 
  </filter-mapping> 
  <listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
  </listener> 
  <servlet> 
    <servlet-name>dispatcher</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <load-on-startup>1</load-on-startup> 
  </servlet> 
  <servlet-mapping> 
    <servlet-name>dispatcher</servlet-name> 
    <url-pattern>*.do</url-pattern> 
  </servlet-mapping> 
 
  <welcome-file-list> 
    <welcome-file>index.html</welcome-file> 
    <welcome-file>index.htm</welcome-file> 
    <welcome-file>index.jsp</welcome-file> 
  </welcome-file-list> 
</web-app> 

----------------------------------------------------------
에러 부분 입니다
----------------------------------------------------------

2014. 3. 30 오후 11:27:47 org.apache.catalina.core.AprLifecycleListener init
정보: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/jdk1.6.0_10/jre/lib/i386/server:/usr/java/jdk1.6.0_10/jre/lib/i386:/usr/java/jdk1.6.0_10/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
2014. 3. 30 오후 11:27:47 org.apache.catalina.startup.Catalina load
정보: Initialization processed in 238 ms
2014. 3. 30 오후 11:27:47 org.apache.catalina.core.StandardService start
정보: Starting service as9864
2014. 3. 30 오후 11:27:47 org.apache.catalina.core.StandardEngine start
정보: Starting Servlet Engine: Apache Tomcat/6.0.29
2014. 3. 30 오후 11:27:47 org.apache.catalina.core.ApplicationContext log
정보: Initializing Spring root WebApplicationContext
2014. 3. 30 오후 11:27:47 org.springframework.web.context.ContextLoader initWebApplicationContext
정보: Root WebApplicationContext: initialization started
2014. 3. 30 오후 11:27:48 org.springframework.context.support.AbstractApplicationContext prepareRefresh
정보: Refreshing Root WebApplicationContext: startup date [Sun Mar 30 23:27:48 KST 2014]; root of context hierarchy
2014. 3. 30 오후 11:27:48 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/dataAccessContext-local.xml]
2014. 3. 30 오후 11:27:48 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
2014. 3. 30 오후 11:27:48 org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
정보: Loading properties file from ServletContext resource [/WEB-INF/db.properties]
2014. 3. 30 오후 11:27:48 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
정보: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@19e11a1: defining beans [dataSource,sqlSessionFactory,schoolMySqlDao,boardMySqlDao,clipMySqlDao,interestMySqlDao,userMySqlDao,commentMySqlDao,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy
2014. 3. 30 오후 11:27:48 org.springframework.web.context.ContextLoader initWebApplicationContext
정보: Root WebApplicationContext: initialization completed in 817 ms
2014. 3. 30 오후 11:27:48 org.apache.catalina.core.ApplicationContext log
정보: Initializing Spring FrameworkServlet 'dispatcher'
2014. 3. 30 오후 11:27:48 org.springframework.web.servlet.FrameworkServlet initServletBean
정보: FrameworkServlet 'dispatcher': initialization started
2014. 3. 30 오후 11:27:48 org.springframework.context.support.AbstractApplicationContext prepareRefresh
정보: Refreshing WebApplicationContext for namespace 'dispatcher-servlet': startup date [Sun Mar 30 23:27:48 KST 2014]; parent: Root WebApplicationContext
2014. 3. 30 오후 11:27:48 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/dispatcher-servlet.xml]
2014. 3. 30 오후 11:27:48 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
정보: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1e88b35: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,org.springframework.web.servlet.handler.MappedInterceptor#0,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.config.viewControllerHandlerMapping,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#1,org.springframework.format.support.FormattingConversionServiceFactoryBean#1,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#1,org.springframework.web.servlet.handler.MappedInterceptor#2,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#1,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#1,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#1,localeResolver,multipartResolver,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@19e11a1
2014. 3. 30 오후 11:27:49 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler
정보: Root mapping to handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
2014. 3. 30 오후 11:27:49 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler
정보: Mapped URL path [/resources/**] onto handler 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
2014. 3. 30 오후 11:27:49 org.springframework.web.servlet.FrameworkServlet initServletBean
정보: FrameworkServlet 'dispatcher': initialization completed in 483 ms
2014. 3. 30 오후 11:27:49 org.apache.catalina.startup.HostConfig deployDirectory
정보: Deploying web application directory www
2014. 3. 30 오후 11:27:49 org.apache.catalina.core.ApplicationContext log
정보: Initializing Spring root WebApplicationContext
2014. 3. 30 오후 11:27:49 org.springframework.web.context.ContextLoader initWebApplicationContext
정보: Root WebApplicationContext: initialization started
2014. 3. 30 오후 11:27:49 org.springframework.context.support.AbstractApplicationContext prepareRefresh
정보: Refreshing Root WebApplicationContext: startup date [Sun Mar 30 23:27:49 KST 2014]; root of context hierarchy
2014. 3. 30 오후 11:27:49 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/dataAccessContext-local.xml]
2014. 3. 30 오후 11:27:49 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
2014. 3. 30 오후 11:27:49 org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
정보: Loading properties file from ServletContext resource [/WEB-INF/db.properties]
2014. 3. 30 오후 11:27:49 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
정보: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@f90137: defining beans [dataSource,sqlSessionFactory,schoolMySqlDao,boardMySqlDao,clipMySqlDao,interestMySqlDao,userMySqlDao,commentMySqlDao,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy
2014. 3. 30 오후 11:27:50 org.springframework.web.context.ContextLoader initWebApplicationContext
정보: Root WebApplicationContext: initialization completed in 668 ms
2014. 3. 30 오후 11:27:50 org.apache.catalina.core.ApplicationContext log
정보: Initializing Spring FrameworkServlet 'dispatcher'
2014. 3. 30 오후 11:27:50 org.springframework.web.servlet.FrameworkServlet initServletBean
정보: FrameworkServlet 'dispatcher': initialization started
2014. 3. 30 오후 11:27:50 org.springframework.context.support.AbstractApplicationContext prepareRefresh
정보: Refreshing WebApplicationContext for namespace 'dispatcher-servlet': startup date [Sun Mar 30 23:27:50 KST 2014]; parent: Root WebApplicationContext
2014. 3. 30 오후 11:27:50 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from ServletContext resource [/WEB-INF/dispatcher-servlet.xml]
2014. 3. 30 오후 11:27:50 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
정보: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1ffbcb: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,org.springframework.web.servlet.handler.MappedInterceptor#0,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.config.viewControllerHandlerMapping,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#1,org.springframework.format.support.FormattingConversionServiceFactoryBean#1,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#1,org.springframework.web.servlet.handler.MappedInterceptor#2,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#1,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#1,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#1,localeResolver,multipartResolver,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@f90137
2014. 3. 30 오후 11:27:50 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler
정보: Root mapping to handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
2014. 3. 30 오후 11:27:50 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler
정보: Mapped URL path [/resources/**] onto handler 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
2014. 3. 30 오후 11:27:50 org.springframework.web.servlet.FrameworkServlet initServletBean
정보: FrameworkServlet 'dispatcher': initialization completed in 373 ms
2014. 3. 30 오후 11:27:50 org.apache.catalina.startup.HostConfig deployDirectory
정보: Deploying web application directory www_1
2014. 3. 30 오후 11:27:50 org.apache.catalina.startup.HostConfig deployDirectory
정보: Deploying web application directory tomcat
2014. 3. 30 오후 11:27:50 org.apache.jk.common.ChannelSocket init
정보: JK: ajp13 listening on /0.0.0.0:8543
2014. 3. 30 오후 11:27:50 org.apache.jk.server.JkMain start
정보: Jk running ID=0 time=0/13 config=null
2014. 3. 30 오후 11:27:50 org.apache.catalina.startup.Catalina start
정보: Server startup in 2815 ms
2014. 3. 30 오후 11:28:03 org.springframework.web.servlet.DispatcherServlet noHandlerFound
경고: No mapping found for HTTP request with URI [/Interest/selectMyInterest.do] in DispatcherServlet with name 'dispatcher'
2014. 3. 30 오후 11:28:03 org.springframework.web.servlet.DispatcherServlet noHandlerFound
경고: No mapping found for HTTP request with URI [/MyCP/Interest/selectMyInterest.do] in DispatcherServlet with name 'dispatcher'
2014. 3. 30 오후 11:28:03 org.springframework.web.servlet.DispatcherServlet noHandlerFound
경고: No mapping found for HTTP request with URI [/as9864/Interest/selectMyInterest.do] in DispatcherServlet with name 'dispatcher'

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.