从web.xml移动到OSGi Http Whiteboard模式创建了bundle-context.xml 如何在jspServletfilter的osgi:service-properties
中从web.xml传递以下属性 <jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-property-group>
</jsp-config>
我尝试了以下解决方案,但它不起作用。
<bean id="jspServlet" class="com.test.servlet.web.servlet.TestJSPServlet"/>
<osgi:service ref="jspServlet" interface="javax.servlet.Servlet" >
<osgi:service-properties>
<entry key="osgi.http.whiteboard.filter.name" value="JSPServlet" />
<entry key="osgi.http.whiteboard.servlet.pattern" value-ref="jspPatternsList"/>
<entry key="osgi.http.whiteboard.context.select" value="(osgi.http.whiteboard.context.name=cb)" />
<entry key="servlet.init.el-ignored" value="true" />
</osgi:service-properties>
</osgi:service>
答案 0 :(得分:0)
我刚刚再次检查过,但如果我没有完全错误,OSGi规范不会以某种方式处理JSP。因此,您尝试在那里做的不适用于Apache Felix实现。
让JSP使用Http Whiteboard方法的唯一方法是切换到Pax - Web项目。因为它不仅支持白板方法(规范合规性仍在进行中,6.0.0-SNAPSHOT),而且现在还有更多规范。
要实现您的目标,Pax-Web需要以下内容:
<!-- JSP handling -->
<service id="jspMapping" interface="org.ops4j.pax.web.extender.whiteboard.JspMapping">
<bean class="org.ops4j.pax.web.extender.whiteboard.runtime.DefaultJspMapping">
<property name="urlPatterns">
<array>
<value>/jsp</value>
</array>
</property>
</bean>
</service>
也可以在pax-web项目的samples中找到一个示例。