What is the java java java standard header to get the <jsp-config> tag?

I have a GlassFish 3.1.2 application server and have started using JSP pages, so I am interested in setting the encoding correctly for UTF-8.

My original working file web.xml

started with

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 
   "http://java.sun.com/dtd/web-app_2_3.dtd"> 

      

but then I added the following to it: force UTF-8 encoding

<jsp-config>
   <jsp-property-group>
       <url-pattern>*.jsp</url-pattern>
       <page-encoding>UTF-8</page-encoding>
   </jsp-property-group> 
</jsp-config>

      

and my GlassFish 3.1.2 log file reported

Element type <jsp-config> must be declared web.xml

      

In an attempt to fix the error, I changed the beginning of my file web.xml

to

<?xml version="1.0" encoding="UTF-8"?>  
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
 version="2.4" >

      

and now I am getting the GlassFish server error

Invalid Deployment Descriptors in Deployment descriptor file WEB-INF/web.xml ...
One of '{"http://java.sun.com/xml/ns/j2ee":servlet-class, 
         "http://java.sun.com/xml/ns/j2ee":jsp-file}' is expected.

      

Is my syntax disabled? How do I get the <jsp-config>

header in file working xml.web

for version 2.3?

UPDATE 1

If I run the file web.xml

as

<?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"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_3.xsd"
    version="2.3">

<display-name>myApp</display-name>
<description>My Application</description>

<listener>
    <listener-class>...</listener-class>
</listener>

<servlet>
    <servlet-name>MessageBrokerServlet</servlet-name>
    <display-name>MessageBrokerServlet</display-name>
    <servlet-class>...</servlet-class>
    <init-param>
        <param-name>...</param-name>
        <param-value>...</param-value>
   </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet>
  <servlet-name>Reg</servlet-name>
  <servlet-class>com.mydomain.servlet.Reg</servlet-class>
</servlet>

<servlet-mapping>
   <servlet-name>Reg</servlet-name>
   <url-pattern>/reg</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
</welcome-file-list>

<jsp-config>
  <jsp-property-group>
      <url-pattern>*.jsp</url-pattern>
      <page-encoding>UTF-8</page-encoding>
  </jsp-property-group>
</jsp-config>

</web-app>

      

I see this error:

[#|2014-11-06T13:03:59.779-0800|SEVERE|glassfish3.1.2|javax.enterprise.system.tools.deployment.org.glassfish.deployment.common|_ThreadID=1;_ThreadName=Thread-2;|DPL8015:

      

Invalid deployment descriptors in the WEB-INF / web.xml deployment descriptor file in the archive [myapp]. Line 7 Column 41 - s4s-elt-character: non-whitespace characters in the schema are not allowed elements other than "xs: appinfo" and "xs: documentation". Saw 'var _U = "undefined"; var g_HttpRelativeWebRoot = "/ ocom /"; '. | #]

[# | 2014-11-06T13: 03: 59.779-0800 | HEAVY | glassfish3.1.2 | javax.enterprise.system.tools.deployment.org.glassfish.deployment.common | _ThreadID = 1; _ThreadName = threaded 2; | DPL8005: Expanding deployment descriptor: s4s-elt-character: Non-white characters are not allowed in schematic elements. than "xs: appinfo" and "xs: documentation". Saw 'var _U = "undefined"; var g_HttpRelativeWebRoot = "/ ocom /"; '. | #]

UPDATE 2

Also, I also have a file glassfish-web.xml

in the directory WEB-INF

. If I change the file web.xml

back to original and put the section <jsp-config>

in glassfish-web.xml

instead web.xml

, the server starts fine. Which file <jsp-config>

should go in or matter?

+3


source to share


2 answers


To set up your JSP with UTF-8 you need to use in the first jsp line:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 

      

You should use this, but with your version:



<?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"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">

      

Example of my 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"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
    <display-name>base</display-name>
    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>
                /WEB-INF/spring/spring-mvc-dispatcher.xml
            </param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/spring/spring-database.xml,
            /WEB-INF/spring/spring-security.xml
        </param-value>
    </context-param>
    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>

      

+3


source


For servlet level 3.1 api use:



<?xml version="1.0" encoding="ISO-8859-1"?>

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  version="3.1"
  metadata-complete="true">

      

0


source







All Articles