gpt4 book ai didi

spring - JSP属性文件读取

转载 作者:行者123 更新时间:2023-12-04 03:25:20 25 4
gpt4 key购买 nike

我正在制作一个网络应用程序。在此应用程序中,我使用了 mavenSpring 框架Hibernate 框架JSPApache tiles.

这个应用程序仍然是英文的。所以现在我的要求是转换应用程序是葡萄牙语。所以我为葡萄牙语创建了一个属性文件,并在需要时使用这个属性文件。

在我的应用程序中创建两个属性文件,
1 个用于英语(messages.properties),2 个用于葡萄牙语(messages_pt.properties)

在我的 jsp 页面中,当我从 messages.properties 文件中获取值时,当时工作正常,但是当从 messages_pt.propertie 文件中获取值时,当时工作不正常因为在 messages_pt.properties 文件中包含一些特殊字符

查看我的两个属性文件

messages.properties
gas=Gas

messages_pt.properties
gas=Gás

现在回答我的问题...

在 JSP 页面中,我使用 fmt 标记库 从属性文件中按键读取值我的jsp页面是这样的

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
..............
</head>
<body>
..............
<fmt:message key="gas" />
</body>
</html>

因此,当从 messages_pt.properties 文件中获取 gas 键的值时,会得到 G�s 值。

我在谷歌搜索解决方案并得到了一些解决方案,但没有人能解决我的问题

我正在应用以下解决方案

1) 在 JSP 页面中,我在第一行和元标记中添加了 contentType。请查看上面我的 jsp 页面。

2) 我在 web.xml 文件中添加了 CharacterEncodingFilter,这个过滤器在起始页的第一个过滤器中。

<filter>  
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

3) 我在 xxx-servlet.xml 文件的 messageSourceBean 中添加了 defaultEncoding

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:properties/messages</value>
</list>
</property>
<property name="defaultEncoding" value="UTF-8"/>
<property name="useCodeAsDefaultMessage" value="true"/>
</bean>

4) 我在 pom.xml 文件中添加了 project.build.sourceEncoding

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
.......
</properties>

5) 我试过下面的代码

<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> 
<p><spring:message code="label.menu"/></p>

但现在可以解决我的问题。

如果有人知道任何其他解决方案,请告诉我。

最佳答案

我过去遇到过同样的问题,我执行了以下解决方案,请参阅随附的屏幕截图。

enter image description here

转到文件属性 > 资源 >

将您的内容类型更改为 UTF-8

关于spring - JSP属性文件读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37896916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com