Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getServletPath (0.2 sec)

  1. src/main/java/org/codelibs/fess/api/BaseApiManager.java

        }
    
        protected FormatType detectFormatType(final HttpServletRequest request) {
            String value = request.getParameter("type");
            if (value == null) {
                final String servletPath = request.getServletPath();
                final String[] values = servletPath.replaceAll("/+", "/").split("/");
                if (values.length > 2) {
                    value = values[2];
                }
            }
            if (value == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top