- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关于这个问题的许多回复让我感到压力很大,很多人说我需要使用注释,但我不认为这是这里的问题,也许我的配置有错误。它可能在我的 bean 接线中。我在两点上遇到错误1。当我跳出用户名字段时 - 因为我当时正在执行 Web 服务 和2。当我点击提交按钮并发布数据时。
我正在尝试检查数据库以查看用户名是否已存在,因此我使用了网络服务,因此当我跳出该字段时,它会检查数据库。当我将数据发布到服务器时,我也想进行相同的验证,因此我再次调用相同的函数。
该函数返回一个 boolean 值。它是类中的一个函数,接受 String userName 参数。也许我连接的 bean 不正确。如果我创建一个 Factory Bean 并创建一个 applicationContext.xml 的新实例,它可以工作:
FactoryBean.java
package com.crimetrack.service;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public final class FactoryBean {
private static ClassPathXmlApplicationContext context;
private static ClassPathXmlApplicationContext getContext() {
if (context == null) {
context = new ClassPathXmlApplicationContext("applicationContext.xml");
}
return context;
}
public static OfficerRegistrationValidation getOfficerRegistrationValidation() {
return (OfficerRegistrationValidation) getContext().getBean("officerRegistrationValidation");
}
}
然后如果我使用
(FactoryBean.getOfficerRegistrationValidation().validateUserNameManager.DoesUserNameExist(officer.getUserName()) == true){
在OfficerRegistrationValidation.java中它可以工作,但我不能在我的应用程序中使用它,因为它在applicationContext.xml中创建每个bean的新实例,这会影响我的应用程序。
下面是我的代码和两个错误日志:1.当我跳出用户名字段时;2.当我通过提交按钮发布表单时。我希望这能够很好地说明我正在努力实现的目标:
office_registration.jsp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<style>
<%@ include file="../css/forms.css" %>
</style>
<script type="text/javascript">
<%@ include file="../js/off_reg.js"%>
$(document).ready(function(){
$('#userName').blur(function(evt){
CheckAvailability();
});
});
function CheckAvailability(){
$.ajax( {
type:'GET',
url:'validateUserName.htm',
data:{userName:$('#userName').val()},
dataType: 'json',
success:function(data) {
if (data == true){
alert("User Name Already Exists");
$("#userNameErr").text("User Name Already Exist");
}else if ($("#userName").val() == ""){
$("#userNameErr").text(" ");
}else if(data == false){
$("#userNameErr").text("User Name Valid");
}
}
});
}
</script>
<title>Officer Registration</title>
</head>
<body>
<form:form method="post" modelAttribute="officers" action="officer_registration.htm">
<ol>
<li><label>User Name</label>
<form:input path="userName"/><form:errors path="userName" id="errors"/><label id="userNameErr"></label></li>
<li><label>Password</label>
<form:password path="password"/><form:errors path="password" id="errors"/></li>
<li><label>Re-Enter Password</label>
<form:password path="password2"/><form:errors path="password2" id="errors"/></li>
<li><label>e-Mail Address</label>
<form:input path="emailAdd"/><form:errors path="emailAdd" id="errors"/></li>
<br/>
<li><input type="submit" name= "request" value="Register" />
<input type="submit" name= "request" value="Update" /></li>
</ol>
</form:form>
</body>
</html>
OfficerRegistrationValidation.java
public class OfficerRegistrationValidation implements Validator{
private final Logger logger = Logger.getLogger(getClass());
ValidateUserNameManager validateUserNameManager;
public boolean supports(Class<?> clazz) {
return Officers.class.equals(clazz);
}
public void validate(Object target, Errors errors) {
Officers officer = (Officers) target;
if (officer.getUserName() == null){
errors.rejectValue("userName", "userName.required");
}else{
String userName = officer.getUserName();
logger.info("OfficerRegistrationValidation - UserName is not null so going to check if its valid for :" + userName);
try {
logger.info("OfficerRegistrationValidation - Just before try.....catch block...userName is :" + userName);
logger.info("OfficerRegistrationValidation - about to evaluate if (validateUserNameManager.DoesUserNameExist(officer.getUserName()) == true)" );
//using a factory bean to instantiate the creation of the bean
//in some cases you want to use the existing bean and not instantiate
//if (FactoryBean.getOfficerRegistrationValidation().validateUserNameManager.DoesUserNameExist(officer.getUserName()) == true){
if (validateUserNameManager.DoesUserNameExist(officer.getUserName())== true){
errors.rejectValue("userName", "userName.exist");
}
} catch (Exception e) {
logger.info("OfficerRegistrationValidation - Error Occured When validating UserName");
logger.error("Message", e);
errors.rejectValue("userName", "userName.error");
}
}
if(officer.getPassword()== null){
errors.rejectValue("password", "password.required");
}
if(officer.getPassword2()== null){
errors.rejectValue("password2", "password2.required");
}
}
/**
* @return the validateUserNameManager
*/
public ValidateUserNameManager getValidateUserNameManager() {
logger.info("Getting - ValidateUserNameManager");
return validateUserNameManager;
}
/**
* @param validateUserNameManager the validateUserNameManager to set
*/
public void setValidateUserNameManager(
ValidateUserNameManager validateUserNameManager) {
logger.info("Setting - ValidateUserNameManager");
this.validateUserNameManager = validateUserNameManager;
}
}
ValidateUserNameManager.java
public class ValidateUserNameManager implements ValidateUserNameIFace {
public ValidateUserNameManager(){}
private OfficersDAO officerDao;
private final Logger logger = Logger.getLogger(getClass());
public boolean DoesUserNameExist(String userName) throws Exception {
logger.info("Inside ValidateUserNameManager");
try{
logger.info("ValidateUserNameManager - UserName is : " + userName);
if(officerDao.OfficerExist(userName) == true){
logger.info("ValidateUserNameManager - UserName :" + userName + " does exist");
return true;
}else{
logger.info("ValidateUserNameManager - UserName :" + userName + " does NOT exist");
return false;
}
}catch(Exception e){
logger.error("Message", e);
logger.info("ValidateUserNameManager - UserName :" + userName + " EXCEPTION OCCURED " + e.toString());
return false;
}
}
/**
* @return the officerDao
*/
public OfficersDAO getOfficerDao() {
logger.info("ValidateUserNameManager - getting officerDAO");
return officerDao;
}
/**
* @param officerdao the officerDao to set
*/
public void setOfficerDao(OfficersDAO officerDao) {
logger.info("ValidateUserNameManager - setting officerDAO");
this.officerDao = officerDao;
}
}
OfficerRegistrationController.java
@Controller
public class OfficerRegistrationController {
private final Logger logger = Logger.getLogger(getClass());
private DivisionManager divisionManager;
private PositionManager positionManager;
private GenderManager genderManager;
private Officers officer = new Officers();
private ValidateUserNameManager validateUserNameManager;
Map<String, Object> myDivision = new HashMap<String, Object>();
Map<String, Object> myPosition = new HashMap<String, Object>();
Map<String, Object> myGender = new HashMap<String, Object>();
@InitBinder("officers")
protected void initBinder(WebDataBinder binder){
//removes white spaces
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
//formats date
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
//By passing true this will convert empty strings to null
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
dateFormat.setLenient(false);
logger.info("Just before initBinder");
binder.setValidator(new OfficerRegistrationValidation());
}
@RequestMapping(value="officer_registration.htm", method = RequestMethod.GET)
public ModelAndView loadPage(HttpServletRequest request,
HttpServletResponse response,@ModelAttribute Officers officer, BindingResult result, ModelMap m, Model model) throws Exception {
try{
logger.debug("In Http method for OfficerRegistrationController");
myDivision.put("divisionList", this.divisionManager.getDivisions());
myPosition.put("positionList", this.positionManager.getPositionList());
myGender.put("genderList", this.genderManager.getGenderList());
model.addAttribute("division", myDivision);
model.addAttribute("position", myPosition);
model.addAttribute("gender", myGender);
return new ModelAndView("officer_registration");
}catch(Exception e){
request.setAttribute("error",e.getMessage());
return new ModelAndView("error_page");
}
}
@RequestMapping(value="officer_registration.htm", method=RequestMethod.POST)
public ModelAndView handleRequest(@Valid @ModelAttribute Officers officer, BindingResult result, ModelMap m, Model model)throws Exception{
if(result.hasErrors()){
model.addAttribute("division", myDivision);
model.addAttribute("position", myPosition);
model.addAttribute("gender", myGender);
return new ModelAndView("officer_registration");
}else{
return null;
}
}
@RequestMapping(value="validateUserName.htm", method=RequestMethod.GET)
public @ResponseBody String validateUserName(@RequestParam String userName)throws Exception{
String results = "false";
logger.info("Inside OfficerRegistrationController");
try{
logger.info("In try ..... catch for OfficerRegistrationController");
if (validateUserNameManager.DoesUserNameExist(userName)== true){
results = "true";
return results;
}
}catch(Exception e){
logger.debug("Error in validateUserName Controller " + e.toString());
return results;
}
return results;
}
public void setDivisionManager(DivisionManager divisionManager){
this.divisionManager = divisionManager;
}
public void setPositionManager(PositionManager positionManager){
this.positionManager = positionManager;
}
public void setGenderManager(GenderManager genderManager){
this.genderManager = genderManager;
}
/**
* @return the validateUserNameManager
*/
public ValidateUserNameManager getValidateUserNameManager() {
return validateUserNameManager;
}
/**
* @param validateUserNameManager the validateUserNameManager to set
*/
public void setValidateUserNameManager(
ValidateUserNameManager validateUserNameManager) {
this.validateUserNameManager = validateUserNameManager;
}
/**
* @return the officer
*/
public Officers getOfficer() {
return officer;
}
/**
* @param officer the officer to set
*/
public void setOfficer(Officers officer) {
this.officer = officer;
}
}
crimetrack-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"..............
<!-- __________________________________________________________________________________________________ -->
<!-- Supports annotations and allows the use of @Controller, @Required, @RequestMapping -->
<context:annotation-config/>
<context:component-scan base-package="com.crimetrack" />
<!-- __________________________________________________________________________________________________ -->
<!-- Forwards requests to the "/" resource to the "login" view -->
<mvc:view-controller path="/login" view-name="login"/>
<!-- Forwards requests to the "/" resource to the "officer_registration" view -->
<mvc:view-controller path="/officer_registration" view-name="officer_registration"/>
<!-- __________________________________________________________________________________________________ -->
<!-- <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/> -->
<!-- Is used to process method level annotations -->
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
<!-- __________________________________________________________________________________________________ -->
<!-- <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/> -->
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="messages"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean name="/hello.htm" class="com.crimetrack.web.CountryListController">
<property name="countryManager" ref="countryManager"/>
</bean>
<bean name="/login.htm" class="com.crimetrack.web.AuthenticationController">
<property name="authenticationManager" ref="authenticationManager"/>
</bean>
<bean name="/officer_registration.htm" class="com.crimetrack.web.OfficerRegistrationController">
<property name="divisionManager" ref="divisionManager" />
<property name="positionManager" ref="positionManager" />
<property name="genderManager" ref="genderManager"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean name="/validateUserName.htm" class="com.crimetrack.web.OfficerRegistrationController">
<property name="validateUserNameManager" ref="validateUserNameManager"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"></property>
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"...............
<!-- __________________________________________________________________________________________________ -->
<bean id="countryManager" class="com.crimetrack.service.CountryManager">
<property name="countryDao" ref="countryDao"/>
</bean>
<bean id="countryDao" class="com.crimetrack.jdbc.JdbcCountryDAO">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="authenticationManager" class="com.crimetrack.service.AuthenticationManager">
<property name="loginDao" ref="loginDao" />
</bean>
<bean id="loginDao" class="com.crimetrack.jdbc.JdbcLoginDAO">
<property name="dataSource" ref="dataSource" />
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="divisionManager" class="com.crimetrack.service.DivisionManager">
<property name="divisionDao" ref="divisionDao"/>
</bean>
<bean id="divisionDao" class="com.crimetrack.jdbc.JdbcDivisionDAO">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="positionManager" class="com.crimetrack.service.PositionManager">
<property name="positionDao" ref="positionDao"/>
</bean>
<bean id="positionDao" class="com.crimetrack.jdbc.JdbcPositionDAO">
<property name="dataSource" ref="dataSource" />
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="genderManager" class="com.crimetrack.service.GenderManager">
<property name="genderDao" ref="genderDao"/>
</bean>
<bean id="genderDao" class="com.crimetrack.jdbc.JdbcGenderDAO" >
<property name="dataSource" ref="dataSource" />
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="officerRegistrationValidation" class="com.crimetrack.service.OfficerRegistrationValidation">
<property name="validateUserNameManager" ref="validateUserNameManager"/>
</bean>
<bean id="validateUserNameManager" class="com.crimetrack.service.ValidateUserNameManager">
<property name="officerDao" ref="officerDao"/>
</bean>
<bean id="officerDao" class="com.crimetrack.jdbc.JdbcOfficersDAO" >
<property name="dataSource" ref="dataSource" />
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
</list>
</property>
</bean>
<!-- __________________________________________________________________________________________________ -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
</beans>
<强>1。 Tab 超出用户名字段时的错误日志
1882370 [http-8084-1] DEBUG org.springframework.web.bind.annotation.support.HandlerMethodInvoker - Invoking request handler method: public java.lang.String com.crimetrack.web.OfficerRegistrationController.validateUserName(java.lang.String) throws java.lang.Exception
1882370 [http-8084-1] INFO com.crimetrack.web.OfficerRegistrationController - Inside OfficerRegistrationController
1882370 [http-8084-1] INFO com.crimetrack.web.OfficerRegistrationController - In try ..... catch for OfficerRegistrationController
1882370 [http-8084-1] INFO com.crimetrack.service.ValidateUserNameManager - Inside ValidateUserNameManager
1882370 [http-8084-1] INFO com.crimetrack.service.ValidateUserNameManager - ValidateUserNameManager - UserName is : admin
1882371 [http-8084-1] ERROR com.crimetrack.service.ValidateUserNameManager - Message
java.lang.NullPointerException
at com.crimetrack.service.ValidateUserNameManager.DoesUserNameExist(ValidateUserNameManager.java:26)
at com.crimetrack.web.OfficerRegistrationController.validateUserName(OfficerRegistrationController.java:140)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:176)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:436)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:424)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)
1882371 [http-8084-1] INFO com.crimetrack.service.ValidateUserNameManager - ValidateUserNameManager - UserName :admin EXCEPTION OCCURED java.lang.NullPointerException
2.表单POST到 Controller 时的错误日志:
1135560 [http-8084-1] DEBUG org.springframework.beans.TypeConverterDelegate - Converting String to [class java.lang.String] using property editor [org.springframework.beans.propertyeditors.StringTrimmerEditor@1983ad7]
1135560 [http-8084-1] INFO com.crimetrack.service.OfficerRegistrationValidation - OfficerRegistrationValidation - UserName is not null so going to check if its valid for :admin
1135560 [http-8084-1] INFO com.crimetrack.service.OfficerRegistrationValidation - OfficerRegistrationValidation - Just before try.....catch block...userName is :admin
1135560 [http-8084-1] INFO com.crimetrack.service.OfficerRegistrationValidation - OfficerRegistrationValidation - about to evaluate if (validateUserNameManager.DoesUserNameExist(officer.getUserName()) == true)
1135560 [http-8084-1] INFO com.crimetrack.service.OfficerRegistrationValidation - OfficerRegistrationValidation - Error Occured When validating UserName
1135561 [http-8084-1] ERROR com.crimetrack.service.OfficerRegistrationValidation - Message
java.lang.NullPointerException
at com.crimetrack.service.OfficerRegistrationValidation.validate(OfficerRegistrationValidation.java:61)
at org.springframework.validation.DataBinder.validate(DataBinder.java:725)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.doBind(HandlerMethodInvoker.java:815)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:367)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:171)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:436)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:424)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:789)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)
最佳答案
当您执行 new OfficerRegistrationValidation()
时在你的 Controller 中initBinder
你得到一个实例 validateUserNameManager
为空,因此 NPE。Spring 不会自动为您“填充”类字段,您需要请求它。
此外,您的 Controller 似乎在字段(类级别)上存储每个用户的内容,但如果两个用户请求同一页面怎么办?
我会建议类似的事情:
@Controller
public class OfficerRegistrationController {
private final Logger logger = Logger.getLogger(getClass());
@Autowire // tells spring to populates that for us.
private DivisionManager divisionManager;
@Autowire
private PositionManager positionManager;
@Autowire
private GenderManager genderManager;
@Autowire
private OfficerRegistrationValidation officerRegistrationValidation;
@InitBinder("officers")
protected void initBinder(WebDataBinder binder){
//removes white spaces
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
//formats date
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
//By passing true this will convert empty strings to null
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
dateFormat.setLenient(false);
logger.info("Just before initBinder");
binder.setValidator(officerRegistrationValidation);
}
@RequestMapping(value="officer_registration.htm", method = RequestMethod.GET)
public ModelAndView loadPage(HttpServletRequest request, HttpServletResponse response,@ModelAttribute Officers officer, BindingResult result, ModelMap m, Model model) throws Exception {
// ...
}
@RequestMapping(value="officer_registration.htm", method=RequestMethod.POST)
public ModelAndView handleRequest(@Valid @ModelAttribute Officers officer, BindingResult result, ModelMap m, Model model) throws Exception{
// ...
}
@RequestMapping(value="validateUserName.htm", method=RequestMethod.GET)
public @ResponseBody String validateUserName(@RequestParam String userName) throws Exception{
// ...
}
}
@Component
public class OfficerRegistrationValidation implements Validator {
private final Logger logger = Logger.getLogger(getClass());
@Autowire
ValidateUserNameManager validateUserNameManager;
public boolean supports(Class<?> clazz) {
return Officers.class.equals(clazz);
}
public void validate(Object target, Errors errors) {
// ...
}
}
@Service
public class ValidateUserNameManager implements ValidateUserNameIFace {
private final Logger logger = Logger.getLogger(getClass());
@Autowire
private OfficersDAO officerDao;
public boolean doesUserNameExist(String userName) throws Exception {
// ...
}
}
@Repository
public class OfficersDAO {
// ...
}
注意 @Component
, @Service
, @Repository
对于类,这告诉 spring 在上下文启动时为这些类创建一个 bean(请参阅 <context:annotation-config/>
和 <context:component-scan base-package="..." />
文档)。 @Autowire
告诉 spring 尝试将带注释的字段与一个现有 bean 进行匹配(使用它的类型)。
整个想法是三层: Controller 、服务和 daos;
我也建议一些好的阅读:) :
关于java - SpringMvc java.lang.NullPointerException - 配置是否正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12643944/
我正在将我的模板代码移植到 XTend。在某些时候,我在测试用例中有这种类型的条件处理: @Test def xtendIfTest() { val obj = new FD if (
我是新来的 kotlin , 当我开始 Null Safety 时,我对下面的情况感到困惑. There's some data inconsistency with regard to initia
我的应用程序一直在各种Android版本中保持良好状态。我有用户在Android 4.3、5.0、5.1和6.0上正常运行。但是,具有S7 Edge的用户刚刚更新了Android 7.0,将文本粘贴到
我使用的是最新版本的 LWUIT (1.5)。我在资源编辑器中设计了我的表单,然后将代码生成到 netbeans。问题是如果我想访问除表单之外的任何对象,我会收到此错误: java.lang.Null
更新: 我在 Fedora 21 上运行它。 SonarQube - 5.0。 SonarQube Runner - 2.4 更新 2:Findbugs v3.1,Java 插件 v2.8 更新3:
RecupData 我的类仅在 web 中返回 NullPointerException。我连接到 pgsql db 8.3.7 - 该脚本在“控制台”syso 中运行良好 - 但引发了测试 Web
我在 mac 上使用 Processing 2.08。我正在尝试使用文档中给出的 createShape 函数创建 PShape。 PShape s; void setup(){ size(500
我在 mac 上使用 Processing 2.08。我正在尝试使用文档中给出的 createShape 函数创建 PShape。 PShape s; void setup(){ size(500
每次运行此 jsp 时,都会收到以下错误异常: org.apache.jasper.JasperException: java.lang.NullPointerException root cause
Kotlin 在编译时有一个出色的 null 检查,使用分离到“可空?”和“不可为空”的对象。它有一个 KAnnotator 来帮助确定来自 Java 的对象是否可以为空。但是,如果 not-null
我有一个布局将显示一个TextView,用于显示一个滴答时间。我遵循了此链接中的代码 How to Display current time that changes dynamically for
Elasticsearch 1.4.1版(“lucene_version”:“4.10.2”) 我有一个像这样的文件: $ curl 'http://localhost:9200/blog/artic
这是我从另一个类调用函数的方法Selenium 设置已定义。 public void Transfer() throws Exception { System.out.println("\nTrans
我试图在主类中使用我在此类中创建的函数,但它崩溃并显示“警告:无法在根 0 处打开/创建首选项根节点 Software\JavaSoft\Prefsx80000002。 Windows RegCrea
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 3 年前。 我有一个 Java 代码,它将
我声明了两张牌: Card card1 = new Card('3', Card.Suit.clubs); Card card2 = new Card('T', Card.Suit.diamonds)
我编写了一段代码来解码 Base64 图像并在 javafx 中表示该图像。在我的 url base64 代码中不断变化。这就是我在 javafx 代码中使用任务的原因。但我收到错误:java.lan
我正在尝试使用 arrayList 的 arrayList 在 Java 中实现图形。 每当调用 addEdge 函数时,我都会收到 NullPointerException 。我似乎无法弄清楚为什么
我是 Java/android 的新手,所以很多这些术语都是外国的,但我愿意学习。我不打算详细介绍该应用程序,因为我认为它不相关。我目前的问题是,我使用了博客中的教程和代码 fragment ,并使我
我正在开发一个 Android 应用程序来在 Android developer guide 的帮助下录制视频.我程序上的所有代码都与此页面相同。 我在 之外定义了权限标签。 当应
我是一名优秀的程序员,十分优秀!