[#694] solve encoding problem

This commit is contained in:
Minwoo Jung
2015-07-10 18:05:15 +09:00
parent 34bf1522eb
commit 43b4a74116
2 changed files with 8 additions and 1 deletions
@@ -80,6 +80,9 @@ public class BusinessTransactionController {
@Value("#{pinpointWebProps['log.page.url'] ?: ''}")
private String logPageUrl;
@Value("#{pinpointWebProps['log.button.disable.message'] ?: ''}")
private String disableButtonMessage;
/**
* executed URLs in applicationname query within from ~ to timeframe
@@ -194,6 +197,7 @@ public class BusinessTransactionController {
mv.addObject("loggingTransactionInfo", recordSet.isLoggingTransactionInfo());
mv.addObject("logButtonName", logButtonName);
mv.addObject("logPageUrl", logPageUrl);
mv.addObject("disableButtonMessage", disableButtonMessage);
}
if (viewVersion == 2) {
@@ -40,7 +40,10 @@
</property>
</bean>
<util:properties id="pinpointWebProps" location="classpath:pinpoint-web.properties"/>
<bean id="pinpointWebProps" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="location" value="classpath:pinpoint-web.properties"/>
<property name="fileEncoding" value="UTF-8"/>
</bean>
<!--
<util:properties id="dataProps" location="classpath:data.properties"/>