c:out not parsing value
When you use an expression like<c:out value="${value}"/>
and the value is showed as a literal and does not replace the contained value, use
<%@ page isELIgnored="false"%>
"Walt Disney creó su imperio con un ratón. Igual que Steve Jobs” San Francisco Chronicle, Febrero de 2004
<c:out value="${value}"/>
<%@ page isELIgnored="false"%>
<c:out value="${value}"/>the browser shows "value" and in the logs we see a warning saying
<properties> <cxf.version.boolean>2.6.0</cxf.version.boolean> <cxf.version>2.5.1</cxf.version> </properties> <build> <plugins> <!-- CXF Code generation --> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> <version>${cxf.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>wsdl2java</goal> </goals> <configuration> <wsdlOptions> <wsdlOption> <wsdl>${basedir}/src/main/resources/wsdl/WebAPI.wsdl</wsdl> <autoNameResolution>true</autoNameResolution> <extraargs> <!-- Package Destination --> <extraarg>-p</extraarg> <extraarg>org.gustavoalberola</extraarg> <extraarg>-xjc-Xbg</extraarg> <extraarg>-xjc-Xcollection-setter-injector</extraarg> <!-- Binding directory --> <extraarg>-b</extraarg> <extraarg>${basedir}/src/main/resources/wsdl/binding.xml</extraarg> </extraargs> </wsdlOption> </wsdlOptions> </configuration> </execution> </executions> <dependencies> <!-- Boolean getters --> <dependency> <groupId>org.apache.cxf.xjcplugins</groupId> <artifactId>cxf-xjc-boolean</artifactId> <version>${cxf.version.boolean}</version> </dependency> <!-- Collection Setters --> <dependency> <groupId>net.java.dev.vcc.thirdparty</groupId> <artifactId>collection-setter-injector</artifactId> <version>0.5.0-1</version> </dependency> </dependencies> </plugin> </plugins> </build>
<properties> <jdk.version>1.6</jdk.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </build>
<?xml version="1.0" encoding="UTF-8"?> xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <context:component-scan base-package="com.blogspot.gustavoalberola" /> </beans>