Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jersey with Struts2 [duplicate]

I am using jersey with Struts2. But by RestFul Service calls are not working. Below are my configurations files

struts.xml

<?xml version="1.0" encoding="UTF-8"?>    
<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
        "http://struts.apache.org/dtds/struts-2.1.dtd">

<struts>
    <package name="default" namespace="/" extends="struts-default">
    <result-types>
        <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" />
    </result-types>

     <interceptors>
            <interceptor-stack name="default">
                 <interceptor-ref name="defaultStack">
                    <param name="exception.logEnabled">true</param>
                    <param name="exception.logLevel">ERROR</param>
                    <param name="params.excludeParams">/service/*</param>
                </interceptor-ref>
            </interceptor-stack>
        </interceptors>

        <default-interceptor-ref name="default" />

        <action name="defaultAction"
            class="com.gemini.web.controller.BinMasterController"
            method="binMaster">
            <result name="binMaster" type="tiles">binMaster</result>
        </action>    
    </package>    
</struts>

Web.xml

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
    <!-- Client config -->
    <context-param>
        <param-name>
            org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG
        </param-name>
        <param-value>
            /WEB-INF/tiles.xml
        </param-value>
    </context-param>

    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>
            org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
        </filter-class>
    </filter>

    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <listener>
        <listener-class>
            org.apache.struts2.tiles.StrutsTilesListener
        </listener-class>
    </listener>

    <!-- Jersey Support Configuration for RestFul WebServices -->
    <servlet>
        <servlet-name>jersey-serlvet</servlet-name>
        <servlet-class>
            com.sun.jersey.spi.container.servlet.ServletContainer
        </servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>com.gemini.rest.controller</param-value>
        </init-param>
        <init-param>
            <param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
            <param-value>true</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>jersey-serlvet</servlet-name>
        <url-pattern>/service/*</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>    
</web-app>
like image 693
Kalyan Raju Avatar asked Jun 25 '13 08:06

Kalyan Raju


People also ask

How to use Struts 2 in JSP?

Struts 2 subset tag is used to output a subset or portion of an iterator elements. Struts 2 Data tags, help to get the data from the ValueStack, or place the data into the ValusStack. Struts 2 a tag is used to render a HTML “<a>” tag. Struts 2 action tag is used to call action class directly from a JSP page.

What is Apache Struts 2?

Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications. This framework is designed to streamline the full development cycle from building, to deploying and maintaining applications over time. Apache Struts 2 was originally known as Web Work 2.

What does The Struts 2 JSON plugin do?

The struts 2 JSON plugin allows you to create an action that can be serialized into a JSON object.

How to create The Struts 2 application without IDE?

In this example, we are creating the struts 2 example without IDE. We can simply create the struts 2 application by following these simple steps: Map the request with the action in (struts.xml) file and define the view components


1 Answers

With this configuration Struts2 filter intercepts all requests.

To exclude your /service/* requests use struts.action.excludePattern constant:

<constant name="struts.action.excludePattern" value="/service/.*" />
like image 125
Aleksandr M Avatar answered Oct 13 '22 04:10

Aleksandr M