liferay 5.2重定向到移动页面

时间:2015-06-18 09:33:50

标签: jquery-mobile liferay

我使用liferay 5.2

我开发了一个Java EE应用程序

我目前正在使用移动版

由于我的应用程序无响应,我发现了一个问题

所以我的解决方案是开发几个移动模块以供移动设备使用

我的问题在于liferay的登录页面

我想找到一种方法来进行重定向

重定向到移动页面或网页

在portal-ext.properties文件中以这种方式重定向到网页

default.landing.page.path=/group/inbox

如何添加重定向到移动页面

已更新:

使用liferay 6我可以使用此代码并添加测试以进行重定向

public class LoginPostAction extends Action 

{

    public void run(HttpServletRequest request, HttpServletResponse response)
            throws ActionException {



                ThemeDisplay themeDisplay = (ThemeDisplay)request.getAttribute(
                        WebKeys.THEME_DISPLAY);
                Device device =themeDisplay.getDevice() ;
                Dimensions dimensions = device.getScreenSize();
                float height = dimensions.getHeight();
                float width = dimensions.getWidth();

                String brand = device.getCapability("brand_name") ;

            }



}

这是生命之光:

的liferay门户服务-6.1.1.jar

但我没有找到使用liferay 5.2的方式

0 个答案:

没有答案