基于 Spring mvc Java 的配置不起作用。控制台显示没有错误但我的jsp页面没有显示

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/28715345/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-11-02 14:03:28  来源:igfitidea点击:

Spring mvc Java based Configuration not working. Console display no error but my jsp page is not showing

javaspringhibernatespring-mvcspring-security

提问by Kharoud

Hello i am converting my simple demo project from bean configuration to pure java based configuration. Bean configuration works fine creating tables and all. But my java configuration is not displaying any pages. I solved many errors bur now console shows no error specifying the problem. here's my code please find whats wrong, or have i missed anything in the configuration. I am new to spring and fairly new to java based configuration. These are the sites from which i took code.

您好,我正在将我的简单演示项目从 bean 配置转换为纯基于 Java 的配置。 Bean 配置可以很好地创建表和所有内容。但是我的 java 配置没有显示任何页面。我解决了很多错误,现在控制台没有显示指定问题的错误。这是我的代码,请找出问题所在,或者我错过了配置中的任何内容。我是 spring 的新手,对基于 Java 的配置相当陌生。这些是我从中获取代码的站点。

http://codehustler.org/blog/spring-security-tutorial-form-login-java-config/

http://codehustler.org/blog/spring-security-tutorial-form-login-java-config/

for hibernate i use used this tutorial

对于休眠,我使用了本教程

http://websystique.com/spring/spring4-hibernate4-mysql-maven-integration-example-using-annotations/

http://websystique.com/spring/spring4-hibernate4-mysql-maven-integration-example-using-annotations/

My classes

我的课程

1. AppConfiguration
 package com.kharoud.configuration;
 import org.springframework.context.annotation.ComponentScan;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.context.annotation.Import;

 @Configuration
 @ComponentScan({"com.kharoud"})
 @Import({MvcConfiguraion.class, RepositoryConfiguration.class})
 public class AppConfiguration {

 }

2.MvcConfigurtion

2.MVC配置

package com.kharoud.configuration;

import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.Bean;
import       org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;


@EnableWebMvc
@Configuration
public class MvcConfiguraion extends WebMvcConfigurerAdapter{


@Override
public void configureDefaultServletHandling( DefaultServletHandlerConfigurer configurer ){      
    configurer.enable();
}

@Bean
public InternalResourceViewResolver getInternalResourceViewResolver(){      
    InternalResourceViewResolver resolver = new InternalResourceViewResolver();
    resolver.setPrefix("/WEB-INF/views");
    resolver.setSuffix(".jsp");
    return resolver;

}
}

3.RepositoryConfiguration package com.kharoud.configuration;

3.RepositoryConfiguration包com.kharoud.configuration;

import java.util.Properties;

import javax.sql.DataSource;

import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.orm.hibernate4.HibernateTransactionManager;
import org.springframework.orm.hibernate4.LocalSessionFactoryBean;
import org.springframework.transaction.annotation.EnableTransactionManagement;

@Configuration
@EnableTransactionManagement
@PropertySource({ "classpath:hibernate.properties" })
public class RepositoryConfiguration {

@Autowired
private Environment environment;

@Bean
public LocalSessionFactoryBean sessionFactory(){        
    LocalSessionFactoryBean sessionFactory = new LocalSessionFactoryBean();
    sessionFactory.setDataSource(dataSource());
    sessionFactory.setPackagesToScan(new String[] {"com.kharoud.model"});
    sessionFactory.setHibernateProperties(hibernateProperties());
    return sessionFactory;
}

@Bean
public Properties hibernateProperties() {
    Properties properties = new Properties();
    properties.put("hibernate.dialect",      environment.getRequiredProperty("hibernate.dialect"));
    properties.put("hibernate.show_sql", environment.getRequiredProperty("hibernate.show_sql"));
    properties.put("hibernate.hbm2ddl.auto", environment.getRequiredProperty("hibernate.hbm2ddl.auto"));
    return properties;
}

@Bean
public DataSource dataSource() {        
    DriverManagerDataSource dataSource = new DriverManagerDataSource();
    dataSource.setDriverClassName(environment.getRequiredProperty("jdbc.driverClassName"));
    dataSource.setUrl(environment.getRequiredProperty("jdbc.url"));
    dataSource.setUsername(environment.getRequiredProperty("jdbc.username"));
    dataSource.setPassword(environment.getRequiredProperty("jdbc.password"));
    return dataSource;
}

@Bean
@Autowired
public HibernateTransactionManager transactionManager(SessionFactory s) {
   HibernateTransactionManager txManager = new   HibernateTransactionManager();
   txManager.setSessionFactory(s);
   return txManager;
}
}

4.SpringConfigurationInitializer

4.SpringConfigurationInitializer

package com.kharoud.configuration.initilizer;

import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

import com.kharoud.configuration.AppConfiguration;


public class SpringConfigurationInitializer extends     AbstractAnnotationConfigDispatcherServletInitializer{

@Override
protected Class<?>[] getRootConfigClasses() {
    return new Class[] { AppConfiguration.class };
}

@Override
protected Class<?>[] getServletConfigClasses() {
    // TODO Auto-generated method stub
    return null;
}

@Override
protected String[] getServletMappings() {

    return new String[] { "/" };
}

}

only added these new classes. I deleted my web.xml.

只添加了这些新类。我删除了我的 web.xml。

Later on i will add Spring Security configuration class

稍后我将添加 Spring Security 配置类

this is my console output

这是我的控制台输出

Feb 25, 2015 2:32:13 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal     performance in production environments was not found on the java.library.path: C:\Program     Files\Java\jdk1.8.0_25\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Window     s;C:/Program Files/Java/jre1.8.0_25/bin/server;C:/Program   Files/Java/jre1.8.0_25/bin;C:/Program     Files/Java/jre1.8.0_25/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\Windows\      system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShe     ll\v1.0\;C:\Program Files\Java\jdk1.8.0_25\bin;;C:\ECLIPSE\eclipse;;.
 Feb 25, 2015 2:32:14 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
 WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting   property 'source' to 'org.eclipse.jst.jee.server:ProjectDemo' did not find a   matching property.
Feb 25, 2015 2:32:14 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8080"]
Feb 25, 2015 2:32:14 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["ajp-bio-8009"]
Feb 25, 2015 2:32:14 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1063 ms
Feb 25, 2015 2:32:14 PM org.apache.catalina.core.StandardService  startInternal
INFO: Starting service Catalina
Feb 25, 2015 2:32:14 PM org.apache.catalina.core.StandardEngine  startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.47
Feb 25, 2015 2:32:15 PM org.apache.catalina.util.SessionIdGenerator createSecureRandom
INFO: Creation of SecureRandom instance for session ID generation using  [SHA1PRNG] took [217] milliseconds.
Feb 25, 2015 2:32:18 PM org.apache.catalina.core.ApplicationContext log
INFO: Spring WebApplicationInitializers detected on classpath:  [com.kharoud.configuration.initilizer.SpringConfigurationInitializer@389ae113]
Feb 25, 2015 2:32:18 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
log4j:WARN No appenders could be found for logger  (org.springframework.web.context.ContextLoader).
log4j:WARN Please initialize the log4j system properly.
Feb 25, 2015 2:32:26 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring FrameworkServlet 'dispatcher'
Feb 25, 2015 2:32:26 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8080"]
Feb 25, 2015 2:32:26 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["ajp-bio-8009"]
Feb 25, 2015 2:32:26 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 11876 ms

MyHomeController

我的家控制器

package com.kharoud;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;


@Controller
public class HomeController {

    @RequestMapping("/")
    public String welcome(Model model){
        return "index";
    }
}

Myindex.jsp file is in WEB-INF/views folder under webapp folder

Myindex.jsp 文件在 webapp 文件夹下的 WEB-INF/views 文件夹中

The views were properly resolved with bean configuration.

采纳答案by Kharoud

Thank you for your answers. I found the problem. When i wrote @ComponentScan on top of my MvcConfiguration class it worked and pages are displaying.

谢谢您的回答。我发现了问题。当我在 MvcConfiguration 类的顶部编写 @ComponentScan 时,它可以工作并且页面正在显示。