- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 Spring MVC 中遇到 from:select 问题。
第一个模型是Azienda.java:
@Entity
@Table(name = "azienda")
public class Azienda implements Serializable {
private static final long serialVersionUID = 1787438745757438466L;
private Integer id_azienda; // This is what i want to put in my "from:select" and retrieve
private String ragione_sociale;
private String indirizzo;
public Azienda() {
}
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
@SequenceGenerator(name = "VA06148AE14539F54E6601582", sequenceName = "azienda_id_azienda_seq")
@Column(name = "id_azienda", nullable = false)
public Integer getId_azienda() {
return this.id_azienda;
}
public void setId_azienda(Integer value) {
this.id_azienda = value;
}
@Column(name = "ragione_sociale", nullable = false, length = 10)
public String getRagione_sociale() {
return this.ragione_sociale;
}
public void setRagione_sociale(String value) {
this.ragione_sociale = value;
}
@Column(name = "indirizzo", nullable = false, length = 30)
public String getIndirizzo() {
return this.indirizzo;
}
public void setIndirizzo(String value) {
this.indirizzo = value;
}
}
继承自类Azienda.java的第二个模型Progetto.java是:
@Entity
@Table(name = "progetto")
public class Progetto implements Serializable {
private static final long serialVersionUID = 908957127555871179L;
private int id_progetto;
private String nome;
private Integer costo;
private Date data_inizio;
private Date data_fine;
private Azienda azienda;
private String descrizione;
public Progetto() {
}
@ManyToOne(optional = false)
@JoinColumn(name = "azienda", referencedColumnName = "id_azienda")
public Azienda getAzienda() {
return this.azienda;
}
public void setAzienda(Azienda value) {
this.azienda = value;
}
@Column(name = "workpackage")
@OneToMany(mappedBy = "progetto")
public Collection<Workpackage> getWorkpackage() {
return this.workpackage;
}
public void setWorkpackage(Collection<Workpackage> value) {
this.workpackage = value;
}
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "VA06148AE14539F54E7001591")
@SequenceGenerator(name = "VA06148AE14539F54E7001591", sequenceName = "progetto_id_progetto_seq")
@Column(name = "id_progetto", nullable = false)
public int getId_progetto() {
return this.id_progetto;
}
public void setId_progetto(int value) {
this.id_progetto = value;
}
@Column(name = "nome", nullable = false, length = 30)
public String getNome() {
return this.nome;
}
public void setNome(String value) {
this.nome = value;
}
@Column(name = "descrizione", nullable = false, length = 180)
public String getDescrizione() {
return this.descrizione;
}
public void setDescrizione(String value) {
this.descrizione = value;
}
@Column(name = "costo", nullable = false)
public Integer getCosto() {
return this.costo;
}
public void setCosto(Integer value) {
this.costo = value;
}
@Column(name = "data_inizio", nullable = false)
public Date getData_inizio() {
return this.data_inizio;
}
public void setData_inizio(Date value) {
this.data_inizio = value;
}
@Column(name = "data_fine", nullable = false)
public Date getData_fine() {
return this.data_fine;
}
public void setData_fine(Date value) {
this.data_fine = value;
}
}
addProject 的 Controller 是:
@Controller
public class ProjectController {
protected final Logger log = Logger.getLogger(ProjectController.class);
@Autowired
private AziendaService service;
@RequestMapping(value ="/addProject", method = RequestMethod.GET)
public String createProject(@ModelAttribute("progetto") Progetto progetto, Map<String, Object> model) {
log.info("initiale createProject method.....");
Collection<Azienda> collection = service.getAllCompany(); // Here i get all company in my DB
model.put("modelList", collection); // and i put them in this model to retrieve them in jsp
return "addProject";
}
@RequestMapping(value ="/addProject", method = RequestMethod.POST)
public void addProject(@ModelAttribute("progetto") Progetto progetto) {
log.info("initiale addProject method.....");
log.info("project name :"+progetto.getNome());
log.info("project costo :"+progetto.getCosto());
log.info("data_inizio :"+progetto.getData_inizio());
log.info("data_fine :"+progetto.getData_fine());
log.info("azienda :"+progetto.getAzienda());
}
jsp中带有Spring from标签的from是:
<form:form method="post" action="addProject.htm" commandName="progetto">
<table>
<tr>
<th>Project name:</th>
<td><form:input id="projectname" path="nome" type="text" class="inp-form" /></td>
<td></td>
</tr>
<tr>
<th>Project cost:</th>
<td><form:input id="projectcost" path="costo" type="text" class="inp-form" placeholder="Ex: 1.00"/></td>
<td></td>
</tr>
<tr>
<th>Start Date:</th>
<td>
<form:input id="startdate" path="data_inizio" type="text" class="inp-form"/>
</td>
</tr>
<tr>
<th>End Date:</th>
<td>
<form:input id="enddate" path="data_fine" type="text" class="inp-form" />
</td>
</tr>
<tr>
<th>Select Company:</th>
<td>
<form:select id="company" path="azienda" class="styledselect_form_1">
<form:option value="" label="--Please Select"/>
<form:options items="${modelList}" itemValue="id_azienda" itemLabel="ragione_sociale"/>
</form:select>
</td>
</tr>
<tr>
<th>Description:</th>
<td><form:textarea id="description" path="descrizione" cols="50" rows="8"
class="form-textarea" style="resize: none;"
maxlength="600"
onKeyPress="return ( this.value.length < 600 );"
placeholder="Maximun 600 characters.."></form:textarea></td>
<td></td>
</tr>
<tr>
<th> </th>
<td>
<input type="submit" value="" class="form-submit" />
<input type="reset" value="" class="form-reset" />
</td>
<td></td>
</tr>
</table>
<!-- end id-form -->
</form:form>
当我填写表单时,我在 Eclipse 中遇到此错误:
16:00:10,187 DEBUG [ExceptionHandlerExceptionResolver:] - Resolving exception from handler [public void spring.hibernate.controller.ProjectController.addProject(spring.hibernate.model.Progetto)]: org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'progetto' on field 'azienda': rejected value [1,]; codes [typeMismatch.progetto.azienda,typeMismatch.azienda,typeMismatch.spring.hibernate.model.Azienda,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [progetto.azienda,azienda]; arguments []; default message [azienda]]; default message [Failed to convert property value of type 'java.lang.String[]' to required type 'spring.hibernate.model.Azienda' for property 'azienda'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String[]] to required type [spring.hibernate.model.Azienda] for property 'azienda': no matching editors or conversion strategy found]
16:00:10,187 DEBUG [ResponseStatusExceptionResolver:] - Resolving exception from handler [public void spring.hibernate.controller.ProjectController.addProject(spring.hibernate.model.Progetto)]: org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'progetto' on field 'azienda': rejected value [1,]; codes [typeMismatch.progetto.azienda,typeMismatch.azienda,typeMismatch.spring.hibernate.model.Azienda,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [progetto.azienda,azienda]; arguments []; default message [azienda]]; default message [Failed to convert property value of type 'java.lang.String[]' to required type 'spring.hibernate.model.Azienda' for property 'azienda'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String[]] to required type [spring.hibernate.model.Azienda] for property 'azienda': no matching editors or conversion strategy found]
16:00:10,187 DEBUG [DefaultHandlerExceptionResolver:] - Resolving exception from handler [public void spring.hibernate.controller.ProjectController.addProject(spring.hibernate.model.Progetto)]: org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'progetto' on field 'azienda': rejected value [1,]; codes [typeMismatch.progetto.azienda,typeMismatch.azienda,typeMismatch.spring.hibernate.model.Azienda,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [progetto.azienda,azienda]; arguments []; default message [azienda]]; default message [Failed to convert property value of type 'java.lang.String[]' to required type 'spring.hibernate.model.Azienda' for property 'azienda'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String[]] to required type [spring.hibernate.model.Azienda] for property 'azienda': no matching editors or conversion strategy found]
拒绝值 [1,]
1 是我的数据库中的数字 ID
我尝试解决它,但我找不到任何帮助...有人可以帮助我吗???谢谢。
最佳答案
您需要实现 PropertyEditorSupport 子类,以便从数据层检索 Azienda 类实例。
class AziendaEditor extends PropertyEditorSupport {
private AziendaService service;
public AziendaEditor(AziendaService service) {
this.service = service;
}
@Override
public void setAsText(String identifier) {
setValue(service.getAziendaFromId(identifier));
}
}
参见Spring MVC type conversion : PropertyEditor or Converter?有关 PropertyEditor 的说明。
另外,不要忘记您需要在 Controller 的 @InitBinder 函数中注册 PropertyEditor。
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Azienda.class, new AziendaEditor(service));
}
关于java - 表格:select in spring MVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23272020/
在 的 React 组件中菜单,我需要设置selected反射(reflect)应用程序状态的选项的属性。 在 render() , optionState从状态所有者传递给 SortMenu 组件
我是初级 Ruby-mysql 程序员,我想知道如何使我的(存储过程)查询结果更快.. 这是我的存储过程我正在使用 SQL_CACHE.. 但我不确定.. 缓存使我的过程更快.. : ( DROP
我一直在 Python 中进行套接字编程,以使用 select.select(rfile, wfile, xlist[, timeout]) 处理由已连接的客户端套接字列表发出的请求,并且我还想用 J
我试图通过用空格填充文本来创建下拉列表中的列效果,如下例所示: [Aux1+1] [*] [Aux1+1] [@Tn=PP] [Main] [*] [Main A
我为 MySQL 编写了以下查询: SELECT subquery.t1_column1, subquery.t2_id, MAX(subquery.val) FROM ( S
为什么我们要用 select 标签来编写.attr('selected','selected') 例如: $('#countryList option').filter(function () {
Lokalizacja: Gdańsk Rzeszów Wrocław 不知道发生了什么,但在那种情况下没有选择的选项,我必须从列表中选择一些东西。当我从选
我的表单中有两个选择字段。第一个是单选,另一个是多选。现在我想做的是根据单选中所选的选项,使用给定的数据选择多选中的选项。为此,我在单选更改时触发 ajax 请求: $.ajax({ type
我在 Firefox 5 中发现了一个奇怪的错误(我现在无法访问 4)。但是,我认为它可能在 Firefox 4 中工作,因为我刚买了一台新电脑,而且我不记得以前见过这个错误。 我有几个选择框。所选值
此 SQL 有何不同: 第一个: select * from table_1 a join table_2 b on a.id = b.acc_id 第二个: select * f
预选 的最佳做法是什么?在 ? 根据不同的网站,两者都有效。但是哪个更好呢?最兼容? Foo Bar 最佳答案 如果您正在编写 XHTML,则 selected="selected" 是必需的。 如
我使用 Angular JS 创建了一个多选选择框:下面是相同的代码: JS: $scope.foobars = [{ 'foobar_id': 'foobar01', 'name':
我在 jqGrid 中有几列 edittype="select"。如何读取特定行中当前选定值的选项值? 例如:当我提供以下选项时,如何获得 FedEx 等的“FE” editoption: { val
这是我更大问题的精简查询,但要点是我试图内部联接到一个选择,其中选择受到外部选择的限制。那可能吗?我在内部选择上收到有关多部分标识符 S.Item 和 S.SerialNum 的错误。 要点是这样的,
如果chat.chat_type IS NULL,我想选择user.*,但如果chat.chat_type = 1 我想选择组。* SELECT CASE WHEN ch
我正在编写一个小脚本来测试表单在提交之前是否已被更改。所以我可以使用普通输入(文本、文本区域等): if(element.defaultValue != element.value) { al
我正在尝试为 Prototype 编写一个插件,用户在其中单击下拉菜单并将其替换为多选元素。我快完成了。在用户选择他们想要显示的内容并将表单提交到同一页面之前,一切都很好。我正在使用 PHP 来使用
你如何在 MongoDB 中进行嵌套选择,类似于 SELECT id FROM table1 WHERE id IN (SELECT id FROM table2) 最佳答案 MongoDB 尚不具备
我有以下用于选择下拉列表的代码: {{unit.Text}} UnitOfMeasurements 数组中的每一项看起来像这样: Selected: false Text: "lb" Va
我正在尝试使用[选定]和[ngValue]来设置表单中包含对象的选择标记的默认值。但出于某种原因,它们似乎无法相提并论。。示例代码:。这段代码最终只显示空白作为缺省值。如果删除[ngValue],它就
我是一名优秀的程序员,十分优秀!