gpt4 book ai didi

json - Spring Boot应用程序可以在IntelliJ中运行,但不能作为Docker容器运行

转载 作者:行者123 更新时间:2023-12-02 18:54:03 26 4
gpt4 key购买 nike

我创建了一个Spring Boot应用程序,该应用程序通过HTTP Post将一些经过分析的Twitter内容作为JSON对象获取。
JSON对象如下所示:

{
"analyzedKeywords": [
{
"keyword": "VW",
"tweets": [
{
"indicoScore": 0.8174982823,
"popularity": 5659,
"tweet": {
"createdAt": 1512660826000,
"favouriteCount": 0,
"retweet": true,
"retweetCount": 5,
"retweetedStatus": {
"createdAt": 1512660253000,
"favouriteCount": 1,
"retweet": false,
"retweetCount": 5,
"retweetedStatus": null,
"tweetText": "No time for twitter drama because those VW Polo's aren't gonna strip themselves",
"user": {
"email": null,
"favouritesCount": 1154,
"followersCount": 1080,
"friendsCount": 295,
"id": 197398224,
"profileImageURL": "http://pbs.twimg.com/profile_images/872393691427745792/8DhxJY5-_normal.jpg",
"statusesCount": 120014,
"username": "Kabelo"
}
},
"tweetText": "No time for twitter drama because those VW Polo's aren't gonna strip themselves ",
"user": {
"email": null,
"favouritesCount": 9820,
"followersCount": 5654,
"friendsCount": 558,
"id": 58419134,
"profileImageURL": "http://pbs.twimg.com/profile_images/936993708142157825/BgvNafEp_normal.jpg",
"statusesCount": 124848,
"username": "\ud83c\udf93 Mmina T\u0161hipi \ud83c\udf93"
}
}
}
]
},
{
"keyword": "Tesla",
"tweets": [
{
"indicoScore": 0.9143414881,
"popularity": 10027,
"tweet": {
"createdAt": 1512660797000,
"favouriteCount": 0,
"retweet": true,
"retweetCount": 4,
"retweetedStatus": {
"createdAt": 1512602297000,
"favouriteCount": 5,
"retweet": false,
"retweetCount": 4,
"retweetedStatus": null,
"tweetText": "Anyone know of a plug-in vehicle that can seat 6 and, preferably, tow? \nSo far, our list includes the @Tesla Model\u2026 ",
"user": {
"email": null,
"favouritesCount": 28,
"followersCount": 39,
"friendsCount": 13,
"id": 930140890189975553,
"profileImageURL": "http://pbs.twimg.com/profile_images/931266152973484032/I6PltHR1_normal.jpg",
"statusesCount": 32,
"username": "InsideEVs Forum"
}
},
"tweetText": "Anyone know of a plug-in vehicle that can seat 6 and, preferably, tow? \nSo far, our list includes the @Tesla Model\u2026 ",
"user": {
"email": null,
"favouritesCount": 6,
"followersCount": 10023,
"friendsCount": 18,
"id": 568621669,
"profileImageURL": "http://pbs.twimg.com/profile_images/894917277925158914/nZefv1rw_normal.jpg",
"statusesCount": 20263,
"username": "InsideEVs"
}
}
}
]
}
]
}

获取JSON的方法如下所示:
@RequestMapping(method = RequestMethod.POST, consumes = "application/json")
public ResponseEntity<byte[]> Post(@RequestBody AnalyzedKeywordList analyzedKeywords) {
Document document = new Document();

PdfWriter writer = null;
...

当我从IntelliJ运行代码并将此JSON发布到我的服务时,AnalyzedKeyWordList充满了关键字对象“VW”和“TESLA”。这样就行了。

类“AnalyzedKeywordList”看起来像这样:

导入java.util.List;
public class AnalyzedKeywordList {
List<AnalyzedKeyword> analyzedKeywords;

public AnalyzedKeywordList(List<AnalyzedKeyword> analyzedKeywords) {
this.analyzedKeywords = analyzedKeywords;
}

public AnalyzedKeywordList(){}

public List<AnalyzedKeyword> getAnalyzedKeywords() {
return analyzedKeywords;
}

public void setAnalyzedKeywords(List<AnalyzedKeyword> analyzedKeywords) {
this.analyzedKeywords = analyzedKeywords;
}
}

AnalyzedKeyword看起来像这样(我删除了getter和setter使其更短):
public class AnalyzedKeyword {
private String keyword;
private List<AnalyzedTweet> tweets;

public AnalyzedKeyword(){}
}

AnalyzedTweet(我删除了getter和setter方法,使其更短):
public class AnalyzedTweet {

private float indicoScore;
private Tweet tweet;
private float popularity;

public AnalyzedTweet(){}

public AnalyzedTweet(float indicoScore, Tweet tweet, float popularity) {
this.indicoScore = indicoScore;
this.tweet = tweet;
this.popularity = popularity;
}
}

推文(删除 setter/getter / setter ):
public class Tweet {

private String tweetText;
private boolean isRetweet;
private Date createdAt;
private float favouriteCount;
private float retweetCount;
private Tweet retweetedStatus;
private TwitterUser user;

public Tweet(){}
}

TwitterUser(已删除getter / setter):
public class TwitterUser {
private long id;
private String username;
private String email;
private String profileImageURL;
private float followersCount;
private float friendsCount;
private float favouritesCount;
private float statusesCount;

public TwitterUser(){}
}

现在,我正在编译一个.jar文件,并使用docker对其进行组合(以及其他一些服务):
FROM openjdk:8
ADD target/report-service.jar report-service.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar","report-service.jar"]

启动Docker容器后,我再次将完全相同的Post请求发送给运行在Docker容器中的Spring引导服务,但由于失败而失败
WARN 1 --- [nio-8080-exec-2] .w.s.m.s.DefaultHandlerExceptionResolver : Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Can not deserialize instance of java.util.ArrayList out of START_OBJECT token; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.util.ArrayList out of START_OBJECT token
report-service_1 | at [Source: java.io.PushbackInputStream@4086f71a; line: 3, column: 1]

我正在通过``docker-compose up''启动我的Docker容器。这还会创建一些运行良好的其他容器。
version: '3'
services:
twitter-service:
build: ./twitter
ports:
- "5000:8080"

analyse-service:
build: ./analysis_py
volumes:
- ./analysis_py:/usr/src/app
ports:
- "5001:80"

report-service:
build: ./report
ports:
- "5002:8080"

frontend:
build: ./frontend # specify the directory of the Dockerfile
#volumes:
# - ./frontend:/usr/src/app
ports:
- "4200:4200"

docker 是否更改了请求的主体,或者为什么它不起作用?

最佳答案

如果您的问题是由于旧代码所致,那么您可以做两件事以确保获得最新的代码

docker-compose build
docker-compose up

要么
docker-compose up --build

关于json - Spring Boot应用程序可以在IntelliJ中运行,但不能作为Docker容器运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47729233/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com