Commit 14c205ed authored by 赵建伟's avatar 赵建伟

update codes

parent 8534bcdb
No preview for this file type
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" /> <property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" /> <property name="WebServerToolWindowFactoryState" value="false" />
<property name="aspect.path.notification.shown" value="true" /> <property name="aspect.path.notification.shown" value="true" />
<property name="last_opened_file_path" value="$PROJECT_DIR$/service-client/shs" /> <property name="last_opened_file_path" value="$PROJECT_DIR$" />
</component> </component>
<component name="RecentsManager"> <component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS"> <key name="CopyFile.RECENT_KEYS">
...@@ -199,6 +199,7 @@ ...@@ -199,6 +199,7 @@
<workItem from="1592568026557" duration="772000" /> <workItem from="1592568026557" duration="772000" />
<workItem from="1593835574199" duration="4438000" /> <workItem from="1593835574199" duration="4438000" />
<workItem from="1594091429524" duration="3648000" /> <workItem from="1594091429524" duration="3648000" />
<workItem from="1594173992446" duration="408000" />
</task> </task>
<servers /> <servers />
</component> </component>
......
...@@ -103,7 +103,9 @@ public class SparksqlServiceImpl implements SparksqlService { ...@@ -103,7 +103,9 @@ public class SparksqlServiceImpl implements SparksqlService {
String fileName = file.getName(); String fileName = file.getName();
String nameStr =fileName.replace(".sql",""); String nameStr =fileName.replace(".sql","");
String subject = ""; String subject = "";
String value = ProperUtils.getValue(properBasePath + "pm/" + name + "/en-cn.properties" , nameStr); String properPath = properBasePath + "pm/" + name + "/en-cn.properties";
logger.info("属性文件目录为:{}",properPath);
String value = ProperUtils.getValue(properPath , nameStr);
if(null != value){ if(null != value){
subject = value; subject = value;
}else{ }else{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment