@@ -97,6 +97,30 @@
<version>3.6.1</version>
</dependency>
</dependencies>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>osgeo</id>
+ <name>OSGeo Release Repository</name>
+ <url>https://repo.osgeo.org/repository/release/</url>
+ </repository>
+ <id>osgeo-snapshot</id>
+ <name>OSGeo Snapshot Repository</name>
+ <url>https://repo.osgeo.org/repository/snapshot/</url>
+ </repositories>
<build>
<pluginManagement>
<plugins>
@@ -21,6 +21,7 @@ public class BeanFactory {
return new SecurityConfig()
.setEnabled(true)
.setIgnoreUrls(new String[]{"/api/uc/login/**", "/api/test/**", "/contract/**","/api/file/**","/file/**", "/qlcs/**", "/kfq/**", "/dk/**","/api/zkfxm/**","/api/dxxz/**","/api/shape/**","/api/land-site-select/**"});
+// .setIgnoreUrls(new String[]{"/**"});
}
@Bean
@@ -17,7 +17,7 @@ public class LandSiteSelectController {
@GetMapping("surround-analysis/wkt")
public ResultData surroundAnalysis(String wkt, String type) {
-
+ System.out.println("hello world");
return ResultData.ok(analysisGeometryTask.analysis(wkt,type));
@@ -9,7 +9,7 @@ import lombok.Data;
* @Date 2024/9/24 14:18
*/
@Data
-@TableName(value ="land_supply_n")
+@TableName(value ="land_supply")
public class LandSupply {
private String regionCode;
private String regionName;
@@ -8,9 +8,12 @@ spring:
# url: jdbc:postgresql://121.40.148.47:8525/cyzz
# username: cyzz
# password: zjugis1402!
- url: jdbc:postgresql://121.40.148.47:5432/knowledge
- username: postgres
- password: zdww1402!
+ url: jdbc:postgresql://60.191.110.204:5432/zlzd?currentSchema=nrllm
+ username: sde
+ password: sde
+# url: jdbc:postgresql://10.249.6.132:5432/sde?currentSchema=ecgap_datacenter
+# username: postgres
+# password: zdww1402!
# hikari:
# minimumIdle: 2
# idle-timeout: 600000 # 10分钟
@@ -1,5 +1,5 @@
server:
- port: 7501
+ port: 8517
tomcat:
connection-timeout: 5000
threads:
@@ -30,8 +30,8 @@
sum(case when land_use_type = '其他用地' then land_area_unit_sm else 0 end) as qtmj,
sum(case when land_use_type = '其他用地' then transaction_price else 0 end) as qtje
- from land_supply_n
- where land_supply_n.region_code like '33%' and land_supply_n.transaction_type in ('挂牌出让', '招标出让', '拍卖出让', '招拍挂出让')
+ from land_supply
+ where land_supply.region_code like '33%' and land_supply.transaction_type in ('挂牌出让', '招标出让', '拍卖出让', '招拍挂出让')
group by to_char(transaction_sold_time, 'yyyy'), substr(region_code, 1, 6), county,city order by nf desc,code
) t
)a where a.城市=#{dto.city}