mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 16:28:48 +10:00
[#694] solve encoding problem
This commit is contained in:
+4
@@ -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"/>
|
||||
|
||||
Reference in New Issue
Block a user