Internationalization sitemesh - spring

I'm using freemarker, SiteMesh and Spring framework.
For the pages I use ${requestContext.getMessage()} to get the message from message.properties. But for the decorators this doesn't work. How should I do to get the internationalization working for sitemesh?

You have to use the fmt taglib.
First, add the taglib for sitemesh and fmt on the fisrt line of the decorator.
<%# taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator"%>
<%# taglib prefix="page" uri="http://www.opensymphony.com/sitemesh/page"%>
<%# taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<%# taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"%>
<fmt:setBundle basename="messages" />
In my example, the i18n file is messages.properties. Then you need to use the fmt tag to use the mesages.
<fmt:message key="key_of_message" />

If you prefer templates and the freemarker servlet instead you can enter the following in your templates:
<#assign fmt=JspTaglibs["http://java.sun.com/jstl/fmt"]>
<#fmt.message key="webapp.name" />
and in your web.xml:
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>messages</param-value>
</context-param>

Related

SpringMVC - cann't able to acces JS and CSS file in index.jsp

I have added
<mvc:resources mapping="/webapp/**" location="/webapp/" />
<mvc:default-servlet-handler />
in my dispatch-servlet.xml
my folder hierarchy is
enter image description here
and in index.jsp i declared
<spring:url value="/webapp/resources/js/bootstrap.min.js" var="bootstrapJS" />
<script src ="${bootstrapJS}" type="text/javascript"></script>
can any one tell the actuall issue is with code or folder hierarchy
Hi have you included the tag at the top of index.jsp it will look something like this. <%# taglib prefix="spring" uri="http://www.springframework.org/tags"%>

ATG<dsp:setvalue> Trouble with setting values using JSTL

Got some trouble with using jstl in atg jsp page. Added
<%# taglib uri="http://java.sun.com/jstl/core" prefix="c" %> and some library at /WEB-INF/lib (standard.jar, jstl.jar).
My web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
So <dsp:getvalueof param="id" var="prodId"/>
<c:set var="link" value="genericproduct.jsp?id=${prodId}"/> works fine and shows for example "genericproduct.jsp?id=prod180007",but ${prodId} shows nothing,at the moment <c:out value="${prodId}"/> works. And <dsp:setvalue bean="CustomFormHandler.errorURL" value="genericproduct.jsp?id=${prodId}"/> doesn't works - "genericproduct.jsp?id=${prodId}". Version of JSTL 1.0, application runs on jboss 4.0.5GA.I look forward to your reply.Thanks!
<%# page isELIgnored="false" %>
<%#taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>

How to redirect to external website on 404 Tomcat

I am using spring 3 + Tomcat 7
In web.xml I have defined
<error-page>
<error-code>404</error-code>
<location>/filenotfound</location>
</error-page>
But i want to redirect to external url say www.google.com instead of /filenotfound . How can I do that ?
I am not sure whether giving the direct url in location will work. But you can put a jsp there and redirect to the url from the jsp.
<error-page>
<error-code>404</error-code>
<location>/filenotfound.jsp</location>
</error-page>
filenotfound.jsp
<%# page language="java" %>
<%# taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:redirect url="http://hotmail.com" />

Liferay translation not working with selection break

Hi I'm using liferay version 6.1.2 ce GA3.
I noticed that when i create my own structures and they are containing selection breaks the content within is not translatable.
Every content in a selection break can be marked as "localizable" but even if I do that when I try to add a translation the pop-up is empty with just the title of the web-content.
To me this problem occurs since I upgraded from 6.1.1 CE GA2 but I noticed that even with a new clean installation it's the same.
Hope somebody can help me here.
added Ticket on Issuetracker enter link description here
Internationalization(i18n) in liferay 6.1
Complete working program
My project name is AUIproj.
In Language.properties which labels or the data we want to translate then we have to write inside this file. Suppose in my AUIproj I just want to change the name of my labels and my title only so we have to follow these steps:
Step 1:
First create a folder inside docroot/WEB-INF/src by the name of content, inside content folder, create a file Language.properties.
Step 2:
copy this content to Language.properties
javax.portlet.title=AUI Portlet
product-name=Product Name
product-serial=Product Serial
Step 3:
right click on project then build language lots of supported language files will create inside your content folder automatically and all files contain the same contents that present in your
Language.properties files.
Step 4:
Now we have to just write that specific labels name on that specific file and change the contents on that place.
Use google translator and paste them suppose for hindi I just wrote in hindi file like
javax.portlet.title=भाषा
product-name=उत्पाद नाम
product-serial=उत्पाद धारावाहिक
The name of hindi Language file is Language_hi_IN.properties.
In init.jsp I declared lots of taglib, lots of java classes by import statements.
init.jsp
<%# page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%# taglib uri="http://liferay.com/tld/aui" prefix="aui" %>
<%# taglib uri="http://liferay.com/tld/portlet" prefix="liferay-portlet" %>
<%# taglib uri="http://liferay.com/tld/security" prefix="liferay-security" %>
<%# taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %>
<%# taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>
<%# taglib uri="http://liferay.com/tld/util" prefix="liferay-util" %>
<%# page import="java.util.List" %>
<%# page import="java.util.Calendar" %>
<%# page import="java.util.Collections" %>
<%# page import="com.liferay.portal.kernel.util.HtmlUtil" %>
<%# page import="com.liferay.portal.kernel.util.ParamUtil" %>
<%# page import="com.liferay.portal.kernel.util.CalendarFactoryUtil" %>
<%# page import="com.liferay.portal.kernel.dao.search.ResultRow" %>
<%# page import="com.liferay.portal.kernel.dao.search.SearchEntry" %>
<%# page import="com.liferay.portal.kernel.exception.SystemException" %>
<%# page import="com.liferay.portal.kernel.util.WebKeys" %>
<%# page import="com.liferay.portal.security.permission.ActionKeys" %>
<%# page import="com.liferay.portal.kernel.util.ListUtil" %>
<%# page import="com.liferay.portal.service.permission.PortalPermissionUtil" %>
<%# page import="com.liferay.portal.service.permission.PortletPermissionUtil" %>
<%# page import="javax.portlet.PortletURL" %>
<liferay-theme:defineObjects />
In view.jsp just imported init.jsp
view.jsp
<%# taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<%# include file="init.jsp" %>
<portlet:defineObjects />
This is the <b>AUI Portlet</b> portlet in View mode.
<portlet:actionURL name="addProduct" var="addProductURL" />
<aui:form action="<%= addProductURL.toString() %>" method="post">
<aui:fieldset>
<aui:input name="productName" />
<aui:input name="productSerial" />
<aui:button-row>
<aui:button type="submit" />
</aui:button-row>
</aui:fieldset>
</aui:form>
build.xml
<?xml version="1.0"?>
<!DOCTYPE project>
<project name="AUIproj-portlet" basedir="." default="deploy">
<import file="../build-common-portlet.xml" />
<target name="build-lang">
<antcall target="build-lang-cmd">
<param name="lang.dir" value="docroot/WEB-INF/src/content" />
<param name="lang.file" value="Language" />
</antcall>
</target>
</project>
Paste this line just in portlet.xml just after tag
<resource-bundle>content.Language</resource-bundle>
Finally at first time build language and if you change any data on properties files then build language else no need to build language again and again. But some time it is showing some warnings like in future …...properties file will modified so to again build language and this time the contents of hindi properties file will not change.
Finally go to control panel of liferay -> Test test -> my account -> miscellaneous-> display settings -> Language select hindi and you can see the the title and our labels will change into Hindi language. If you face any problem then please share with me
Thanks and regards
asif aftab

Spring security JSP tags - which jars do I need?

I have a project that used to run successfully on Spring 3.0 with Spring-MVC. I'm moving it to Spring 3.1 and at the same time changing my jar management to Maven rather than manual download/copy to project/lib for Ant.
During loading the first (login) public page in the logs I see:
INFO: At least one JAR was scanned for TLDs yet contained no TLDs
Which makes me think one my taglib URLs isn't being matched to an appropriate taglib jar. So either the URL is incorrect or I don't have the appropriate jars.
In the top of my JSP:
<%# taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%# taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%# taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
<%# taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%# taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
I think it is the security tag that is having issues, as on the following page (after login) I get a new error:
javax.servlet.ServletException: javax.servlet.jsp.JspException: java.io.IOException: No visible WebSecurityExpressionHandler instance could be found in the application context. There must be at least one in order to support expressions in JSP 'authorize' tags.
This is new to me - I hadn't had to define a 'WebSecurityExpressionHandler' when I was running the app with Spring 3.0 libraries, so either I'm missing a jar that provides the relevant stuff or something has changed in Spring 3.0 -> 3.1 in how I should be configuring the security of my application.
Edit:
I've found what looks like it should fulfil that role in my config:
`<bean id="expressionHandler" class="org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler" />`
And
<http auto-config="true" use-expressions="true" .... > in my security-context.xml
You should have at least the following ones:
spring-security-config
spring-security-web
spring-security-taglibs
additionally you can add spring-security-core but Maven should resolve it as a transitive dependency.

Resources