Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two portlets in one WAR-File. Websphere 7 is used to present the portlets.

Problem:

When one portlet is displayed in the websphere portel page everything look fine. I have JSP-File with a form to submit. The right controller and @ActionMapping Function called. When both portlets displayed nothing is fine! The submit action (told before) called the right controller but not the right @ActionMapping Function. Instead the default @RenderMapping function is called. The page reload only.

portlet.xml

    <?xml version="1.0" encoding="UTF-8"?>

<portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0"
    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd
                        http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd">
    <portlet>
        <description>Portlet zur Kundenverwaltung</description>
        <portlet-name>SpringCustomers</portlet-name>
        <display-name>Spring Customers Portlet</display-name>
        <portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
        <init-param>
        <name>contextConfigLocation</name>
        <value>/WEB-INF/SpringCustomers-portlet.xml</value>
        </init-param>
        <expiration-cache>0</expiration-cache>
        <cache-scope>private</cache-scope>

        <supports>
            <mime-type>text/html</mime-type>
            <portlet-mode>view</portlet-mode>
            <window-state>normal</window-state>
        </supports>

        <resource-bundle>content.Language-ext</resource-bundle>

        <portlet-info>
            <title>Spring Customers Portlet</title>
            <short-title>Spring Customers</short-title>
            <keywords>customer,customers,portlet,spring</keywords>
        </portlet-info>

        <supported-public-render-parameter>sharedCustomerId</supported-public-render-parameter>
    </portlet>

    <portlet>
        <description>Portlet zur Bestellungenverwaltung</description>
        <portlet-name>OrderKeineAhnungShit</portlet-name>
        <display-name>Spring Orders Portlet</display-name>
        <portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
        <init-param>
        <name>contextConfigLocation</name>
        <value>/WEB-INF/OrderKeineAhnungShit-portlet.xml</value>
        </init-param>       

        <supports>
            <mime-type>text/html</mime-type>
            <portlet-mode>view</portlet-mode>
            <window-state>normal</window-state>
        </supports>

        <resource-bundle>content.Language-ext</resource-bundle>

        <portlet-info>
            <title>Spring Orders Portlet</title>
            <short-title>Spring Orders</short-title>
            <keywords>order,orders,portlet,spring</keywords>
        </portlet-info>

        <supported-public-render-parameter>sharedCustomerId</supported-public-render-parameter>
    </portlet>

    <public-render-parameter>
        <identifier>sharedCustomerId</identifier>
        <qname xmlns:x="http://www.spring-portlets.de">x:sharedCustomerId</qname>
    </public-render-parameter>



</portlet-app>

JSP-File

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="portlet" uri="http://java.sun.com/portlet_2_0"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page contentType="text/html" isELIgnored="false" %>

<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/formular.css" />

<portlet:actionURL var='addOrderUrl'>
    <portlet:param name='action' value='addOrderAction' />
</portlet:actionURL>


<div id="stylized" class="formStyle">
    <form:form id="form" name="form" method="post" commandName="order" action="${addOrderUrl}">

        .....
        <a href="<portlet:actionURL>
                <portlet:param name="action" value="addOrderCancelAction" />
            </portlet:actionURL>"><input type="button" value="Cancel" /></a>

        ...

    </form:form>
</div>

Controller

    @Controller
@RequestMapping("VIEW")
@SessionAttributes(types = Order.class)
public class AddOrder {

    // Auto connect service
    @Autowired
    private OrderService orderService;

    @Autowired
    private CustomerService customerService;

    @Autowired
    private OrderValidator  orderValidator;

    public void setOrderService(OrderService orderService){
        this.orderService = orderService;
    }

    public void setCustomerService(CustomerService customerService){
        this.customerService = customerService;
    }   


    // Choose view (jsp file)
    @RenderMapping(params="action=showNew")
    public String showAddOrder(RenderResponse response) {
        System.out.println("showAddOrderForm!!!");
        return "addOrder";
    }


    @RequestMapping(params="action=addOrderAction")
    public void onSubmit(@ModelAttribute Order order,  BindingResult bindingResult,  ActionResponse response, SessionStatus sessionStatus){
        System.out.println("addOrderAction called");
        orderValidator.validate(order, bindingResult);

        if(bindingResult.hasErrors() == false){
            orderService.saveOrder(order);
            response.setRenderParameter("action", "");
            sessionStatus.setComplete();
        } else {
            response.setRenderParameter("action", "showAddOrderForm");
        }
    }

    @ActionMapping(params="action=addOrderCancelAction")
    public void addCancelAction(ActionResponse response, SessionStatus sessionStatus){
        response.setRenderParameter("action", "");
        sessionStatus.setComplete();
    }


    @ModelAttribute("order")
    public Order getOrder(@RequestParam(value="customerId", required = false) String customerIdStr){
        Order order = new Order();


        // Return first page when no page number requested
        if(customerIdStr == null){
            // TODO fehler
        } else{
            long customerId = Long.parseLong(customerIdStr);
            order.setCustomer(customerService.getCustomer(customerId));
        }

        return order;
    }

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.