我已经创建了一个Spring启动应用程序,它通过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”类如下所示:
import 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;
}
}
推文(删除了getter / setters):
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 / setters):
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容器后,我再次向在docker容器内运行的Spring启动服务发送完全相同的Post请求,但它失败并带有异常
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是否会更改请求的正文或为什么不能正常工作?
答案 0 :(得分:2)
如果您的问题是由于旧代码,那么您可以做两件事来确保您获得最新代码
docker-compose build
docker-compose up
或
docker-compose up --build
答案 1 :(得分:1)
我找到了解决问题的方法。我的代码工作正常,但是当我运行命令
时似乎没有更新Docker VMdocker-compose up
并部署了我的Spring Boot应用程序的旧版本而不是新版本。 当我关闭Docker,删除虚拟机并运行上面的命令时,Docker创建了一个新的VM,它运行完美。
我不知道为什么会这样,因为Docker docs states:
如果有服务的现有容器和服务 容器创建后,配置或映像已更改, docker-compose up通过停止和重新创建来获取更改 容器(保存已安装的容量)。