javax.el.PropertyNotFoundException:在类型java.lang.String上找不到属性“名称" [英] javax.el.PropertyNotFoundException: Property 'name' not found on type java.lang.String

查看:221
本文介绍了javax.el.PropertyNotFoundException:在类型java.lang.String上找不到属性“名称"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了上面的错误.

我要做的是编写一个应用程序,该应用程序使用未知数量的名称,然后将其打印在新页面上.这应该用于保龄球计分应用程序,但是现在我只想获取名称列表.想法是让每个名称都进入玩家对象,然后依次存储在玩家数组列表中.如果有人可以提供帮助,我将不胜感激.

What i'm trying to do is write an app that takes in an unknown number of names, then prints them out on a new page. This is supposed to be for a bowling scoring app, but for now I just want to get a list of names. The idea is for each name to go into a player object, then in turn be stored in the players arraylist. If anyone can help, I would appreciate it.

这是我的控制器代码:

package multiplayergame;

import java.util.ArrayList;

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.servlet.ModelAndView;


@Controller
@SessionAttributes
public class MultiplayerController {

int score;
int roll;
Game game = new Game();
GameProperties gameProps = new GameProperties();
int playerNo = 0;

ArrayList<PlayerGame> players = new ArrayList<>();
PlayerGame player;

@RequestMapping(value = "/home", method = RequestMethod.GET)
public ModelAndView home() {

    return new ModelAndView("home", "command", gameProps);      
}

@RequestMapping(value = "/nextName", method = { RequestMethod.POST, RequestMethod.GET})
public ModelAndView homeNext(MContact mcontact, BindingResult result) {     
    player = new PlayerGame();

    player.setName(mcontact.getName());
    players.add(player);
    gameProps.setPlayers(players);
    playerNo++;
    return new ModelAndView("home", "command", gameProps);      
}

@RequestMapping(value = "/test", method = RequestMethod.POST)
public ModelAndView playNext(GameProperties gameProps2, ModelMap model) {

    model.addAttribute("players", gameProps.getPlayers());
    model.addAttribute("name", gameProps.getPlayers().get(playerNo).getName());

    return new ModelAndView("test", "players", gameProps2);

}
}

其中包含每个玩家的详细信息:

This holds details for each player:

package multiplayergame;

public class PlayerGame {
private int score;
private int pins;
private String name;
private int roll;
private int nOfPlayers;
private int playerNo;


Game game = new Game();

public Game getGame() {
    return game;
}
public void setGame(Game game) {
    this.game = game;
}   
public int getScore() {
    return score;
}
public void setScore(int score) {
    this.score = score;
}
public int getPins() {
    return pins;
}
public void setPins(int pins) {
    this.pins = pins;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}   
public int getRoll() {
    return roll;
}
public void setRoll(int roll) {
    this.roll = roll;
}
public int getnOfPlayers() {
    return nOfPlayers;
}
public void setnOfPlayers(int nOfPlayers) {
    this.nOfPlayers = nOfPlayers;
}
public int getPlayerNo() {
    return playerNo;
}
public void setPlayerNo(int playerNo) {
    this.playerNo = playerNo;
}
}

这是所有游戏属性(例如得分等)的代码.

This is the code for all Game properties, such as scoring etc.

package multiplayergame;

import java.util.ArrayList;

public class GameProperties {

private int score;
private int pins;
private String name;
private int roll;
private int nOfPlayers;
PlayerGame player;
private ArrayList<PlayerGame> players;
private int playerNo;

public int getScore() {
    return score;
}   
public void setScore(int score) {
    this.score = score;
}   
public int getPins() {
    return pins;
}
public void setPins(int pins) {
    this.pins = pins;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public int getRoll() {
    return roll;
}
public void setRoll(int roll) {
    this.roll = roll;
}
public int getnOfPlayers() {
    return nOfPlayers;
}
public void setnOfPlayers(int nOfPlayers) {
    this.nOfPlayers = nOfPlayers;
}
public ArrayList<PlayerGame> getPlayers() {
    return players;
}
public void setPlayers(ArrayList<PlayerGame> players) {
    this.players = players;
}
public int getPlayerNo() {
    return playerNo;
}
public void setPlayerNo(int playerNo) {
    this.playerNo = playerNo;
}   
}

以下是我的JSP文件,首先输出:

The following are my JSP files, the output first:

<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>


<html>
<head>
<title>Test output</title>
</head>
<body>

<h2>Test Roll</h2>

<c:forEach var="player" items="players">
Name <c:out value="${player.name}"/><p>
</c:forEach>

</body>
</html>

这是主页:

<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<html>
<head>
<title>Bowling</title>
</head>
<body>
<h2>Welcome players!</h2>

<h2>Please enter your names.</h2>

<form:form method="post" action="/multiplayergame/nextName">

<table>
<tr>
    <td><form:label path="name">Name</form:label></td>
    <td><form:input path="name" /></td>
</tr>
<tr>
    <td colspan="2">
        <input type="submit" name = "button" value="Next Player"/>
    </td>
</tr>
</table>     
</form:form>
<form:form method="post" action="/multiplayergame/test">
<tr>
    <td colspan="2">
        <input type="submit" name = "button" value="Play"/>
    </td>
</tr>
</form:form>
</body>
</html>

推荐答案

将此<c:forEach var="player" items="players">更改为<c:forEach var="player" items="${players}">

作为您引荐的玩家"字符串.它正在尝试在字符串中查找属性名称.

As your referring "players" string. it is trying to find the property name in string.

这篇关于javax.el.PropertyNotFoundException:在类型java.lang.String上找不到属性“名称"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆