Set APP short name

This commit is contained in:
2025-06-30 07:29:56 +05:00
parent 715f9881a6
commit fe4ca18541
2 changed files with 3 additions and 5 deletions

View File

@ -94,13 +94,10 @@
<version>1.18.36</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>org-ccalm-weather</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
@ -127,4 +124,5 @@
</plugins>
</build>
</project>

View File

@ -550,7 +550,7 @@ public class SoilTmperature implements ServletContextAware {
}
//---------------------------------------------------------------------------
//Weighted interpolation
@RequestMapping(value = "/geodatalist/getSoil",method = {RequestMethod.POST,RequestMethod.GET},produces = "application/json;charset=utf-8")
@RequestMapping(value = "/geodatalist/getSoilTemperature",method = {RequestMethod.POST,RequestMethod.GET},produces = "application/json;charset=utf-8")
@ResponseBody
public ResponseEntity<Object> getSoil(HttpServletResponse response, HttpServletRequest request, @RequestBody PointModel pointModel, @CookieValue(value = "lng", defaultValue = "1") String language_id) {
String headerValue = CacheControl.maxAge(60, TimeUnit.SECONDS).getHeaderValue();