- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
获取 java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute
spring 3.0 错误。我该如何解决?
下面是文件的代码
index.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Form handling</title>
</head>
<body>
<form:form action="/emp/showEmployee" method="POST">
<table>
<tbody>
<tr><td>Employee Name: </td><td><form:input path="empName"/></td></tr>
<tr><td>Employee Skill: </td><td><form:input path="empSkill"/></td></tr>
<tr><td><input type="submit" value = "Submit"></td></tr>
</tbody>
</table>
</form:form>
</body>
</html>
web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<!-- Processes application requests -->
<servlet>
<servlet-name>emp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>emp</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>/WEB-INF/views/index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/context-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
context-config.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
EmployeeController.java
package com.springmvctut.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import com.springmvctut.bean.EmployeeForm;
@Controller
public class EmployeeController {
@RequestMapping(value = "/employee", method = RequestMethod.GET)
public ModelAndView employee() {
return new ModelAndView("employeeForm", "command", new EmployeeForm());
}
@RequestMapping(value = "/showEmployee", method = RequestMethod.POST)
public String showEmployee(@ModelAttribute("SpringWeb")EmployeeForm employeeForm, ModelMap modelMap){
modelMap.addAttribute("name", employeeForm.getEmpName());
modelMap.addAttribute("skill", employeeForm.getEmpSkill());
return "employeedetails";
}
}
EmployeeForm.java(Bean类)
package com.springmvctut.bean;
public class EmployeeForm {
private String empName;
private String empSkill;
public String getEmpName() {
return empName;
}
public void setEmpName(String empName) {
this.empName = empName;
}
public String getEmpSkill() {
return empSkill;
}
public void setEmpSkill(String empSkill) {
this.empSkill = empSkill;
}
public String toString(){
return "Employee name-"+empName+" Employee Skill-"+empSkill;
}
}
在这里使用 Notepad++ v7.9。 假设 R是一个复杂的正则表达式模式。我现在想匹配 _R , R_ , 或 _R_但不是 R独自的。如何在不明确写入的情况下执行此操作 (_R|R_|_R_)
我制作了一个简单的应用程序来使用 C++ 玩 FizzBuzz 游戏,尽管这不一定是 C++ 问题,但制作 if 语句的最佳方式是什么,因此它执行以下操作: 如果(x)那么:a, 如果(y)那么:
不知道该怎么调用它,Option 和 Either 一样适合,无论如何我都需要处理第三种情况。 Scalaz 可能已经提供了类似的东西,但很想知道在没有单独的库的情况下如何简洁地处理以下简单情况: 我
来自SQLite引用CREATE TRIGGER的文档,可以看到BEFORE、AFTER或INSTEAD OF可能被省略。 那么,当没有指定时触发器什么时候被触发?它记录在哪里? 最佳答案 sqlit
我正在使用文本字段,文本字段所在的 View 是由UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdent
我得到了错误 subscripted value is neither array nor pointer 当我尝试编译我的程序时。我知道这与未声明的变量有关,但我检查了所有内容,它似乎已声明。 st
我一直在尝试但未能模仿 Baeldung article的演练如何触发“子”实体的保存:通过 Spring Boot 的 @DBRef 注释“包含”在另一个实体中的实体。就我而言,我正在尝试从客户那里
我已经实现了以下rich:simpleTogglePanel 无论哪个switchType我设置-server , ajax ,或client - 都不是`action nor the action
请你帮我完成我的简单程序吗?我是初学者,我的英语不好,很难理解。 :/ 程序: void tisk_pole (P); int main() { char P1[3][3]={{'1','2'
int get_first(int arr[],int count) { int half = count / 2; int *firstHalf = malloc(half * size
我正在尝试构建 webrtc 的 android 版本。我用谷歌搜索并找到一个 document .我遵循了所有步骤并按照文档安装了所有必需的东西,但现在我被困在终端命令上 echo export P
我在处理下面的代码段时遇到了一些问题。 #include "stm32f0xx_tim.h" #include "stm32f0xx_adc.h" #include "stm32f0xx_rcc.h"
我正在尝试编写字典程序。用户输入条目和定义。我写的显示功能遇到了问题。我收到此错误: dictionary.c:7: error: subscripted value is neither array
我的代码是这样的: try { mongoose.connect('mongodb://127.0.0.1:27017/fl00ipflop', {useNewUrlParser: true});
我在 Python 中使用 timeit,遇到了一个奇怪的问题。 我定义了一个简单的函数add。当我传递 add 两个字符串参数时,timeit 起作用。但是当我传递 add 两个 int 参数时,它
这个问题在这里已经有了答案: Having trouble exporting from an Angular2 module (2 个答案) 关闭 5 年前。 我正在尝试从我的模块之一导出服务,但
以下代码: Base = declarative_base() engine = create_engine(r"sqlite:///" + r"d:\foo.db",
我正在尝试在 icCube 的模式管理器的脚本用例中创建一个 SET: CREATE SET [TOP_10_SALES] AS TopCount([BRAND].members - [BRA
我是 JQuery 新手,我认为这非常简单,但我找不到正确的选择器。我尝试使用以下代码: $(":not(a[href=word1],a[href=word2]").click(function()
我有一个表定义为 class Results(db.Model): __tablename__ = 'results' event_id = db.Column(db.Integer,
我是一名优秀的程序员,十分优秀!