fix:@Value取值修改、子摸快依赖添加
This commit is contained in:
parent
426932d0ab
commit
14f1503435
|
@ -44,7 +44,12 @@
|
|||
<profile.active>zqtlocal</profile.active>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>xel</id> <!--曾庆拓-->
|
||||
<properties>
|
||||
<profile.active>xel</profile.active>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
<finalName>kangarooDataCenterV3</finalName>
|
||||
|
|
|
@ -30,13 +30,13 @@ import java.util.zip.ZipInputStream;
|
|||
public class FileDownloadServiceImpl extends BaseService< FileDownloadEntity,Long> implements IFileDownloadService{
|
||||
|
||||
protected IFileDownloadDao filedownloadDao;
|
||||
@Value("${savefile.path}")
|
||||
@Value("${savefile.path:}")
|
||||
public String DSK;
|
||||
|
||||
@Value("${savefile.pluginpath}")
|
||||
@Value("${savefile.pluginpath:}")
|
||||
public String PLUGINPATH;
|
||||
|
||||
@Value("${savefile.tomcatpath}")
|
||||
@Value("${savefile.tomcatpath:}")
|
||||
public String TOMCATPATH;
|
||||
@Autowired
|
||||
public void setFileDownloadDao(IFileDownloadDao dao) {
|
||||
|
|
|
@ -40,10 +40,10 @@ import java.util.zip.ZipFile;
|
|||
*/
|
||||
@Service(value = "sys_fileUploadService")
|
||||
public class FileUploadServiceImpl extends BaseService<FileUploadEntity, Long> implements IFileUploadService {
|
||||
@Value("${savefile.path}")
|
||||
@Value("${savefile.path:}")
|
||||
public String DSK;
|
||||
|
||||
@Value("${savefile.pluginpath}")
|
||||
@Value("${savefile.pluginpath:}")
|
||||
public String PLUGINPATH;
|
||||
|
||||
protected IFileUploadDao fileUploadDao;
|
||||
|
|
|
@ -125,7 +125,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
|||
@Resource
|
||||
private ApplicationCache applicationCache;
|
||||
|
||||
@Value("${savefile.tomcatpath}")
|
||||
@Value("${savefile.tomcatpath:}")
|
||||
public String TOMCATPATH;
|
||||
//多线程请求加锁 HttpRequest 构造方法是静态的
|
||||
private final Object lock = new Object();
|
||||
|
|
|
@ -77,7 +77,11 @@
|
|||
<!-- <version>${revision}</version>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.hzya.frame</groupId>
|
||||
<artifactId>fw-weixin</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
12
pom.xml
12
pom.xml
|
@ -7,17 +7,7 @@
|
|||
<module>base-common</module>
|
||||
<module>base-webapp</module>
|
||||
<module>base-core</module>
|
||||
<module>fw-bip</module>
|
||||
<module>fw-cbs</module>
|
||||
<module>fw-dd</module>
|
||||
<module>fw-grpU8</module>
|
||||
<module>fw-nc</module>
|
||||
<module>fw-ncc</module>
|
||||
<module>fw-ningbobank</module>
|
||||
<module>fw-oa</module>
|
||||
<module>fw-u8</module>
|
||||
<module>fw-u8c</module>
|
||||
<module>fw-u9c</module>
|
||||
<module>fw-weixin</module>
|
||||
</modules>
|
||||
<groupId>com.hzya.frame</groupId>
|
||||
<artifactId>kangarooDataCenterV3</artifactId>
|
||||
|
|
Loading…
Reference in New Issue