Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Can't edit files, locked by server

I found the solution: the servlet mapping for the default servlet was missing from web.xml. Adding the following fixed the problem:

  <servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

--
John English

--
This email has been checked for viruses by AVG.
https://www.avg.com



Back to the top