我的第一个应用程序有问题。我试着几个小时来解决这个问题。知道吗??
类型异常报告
消息无法解析名为dispatcher
的servlet中名为“home”的视图
说明服务器遇到意外情况,无法完成请求。
例外情况
javax.servlet.ServletException:无法解析名为“dispatcher”的servlet中名为“home”的视图(dispatcher servlet.java:1251)org.springframework.web.servlet.dispatcherServlet.render(dispatcherServlet.java:1037)org.springframework.web.servlet.dispatcherresult(dispatcherServlet.java:1080)org.springframework.web.servlet.dispatcherServlet.dodispatch(
注意服务器日志中提供了根本原因的完整堆栈跟踪。Apache Tomcat/9.0.1
//控制器
public class SystemController {
@Autowired
private SysDeaUseService sysDeaUseService;
@RequestMapping(value = {"/","/home"}, method = RequestMethod.GET)
public String home(ModelMap model) {
return "home";
}
@RequestMapping(path = "/system", method = RequestMethod.GET)
public String sys(ModelMap model) {
return "system";
}
@RequestMapping(path = "/system/get", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Map<String, Object>> getAllSystem() {
Map<String, Object> resultMap = new HashMap<>();
resultMap.put("Result", "Ok");
resultMap.put("Records", sysDeaUseService.getAllSystem());
return new ResponseEntity<Map<String, Object>>(resultMap, HttpStatus.OK);
}
@RequestMapping(path = "/system/save-edit", method = RequestMethod.POST, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE
, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Map<String, Object>> saveSystem(@ModelAttribute System system) {
sysDeaUseService.saveSystem(system);
Map<String, Object> resultMap = new HashMap<>();
resultMap.put("Result", "Ok");
resultMap.put("Records", sysDeaUseService.getAllSystem());
return new ResponseEntity<Map<String, Object>>(resultMap, HttpStatus.OK);
}
@RequestMapping(path = "/system/delete", method = RequestMethod.POST)
public ResponseEntity<Map<String, Object>> deleteSystem(Integer systemId) {
sysDeaUseService.deleteSystem(systemId);
Map<String, Object> resultMap = new HashMap<>();
resultMap.put("Result", "Ok");
return new ResponseEntity<Map<String, Object>>(resultMap, HttpStatus.OK);
}
//AppConfig
@Configuration
@EnableWebMvc
@EnableTransactionManagement
@PropertySource({"classpath:application.properties"})
@ComponentScan(basePackages = {"com.wn"})
public class AppConfig extends WebMvcConfigurerAdapter {
@Autowired
private Environment env;
@Bean
public TilesViewResolver getTilesViewResolver() {
TilesViewResolver tilesViewResolver = new TilesViewResolver();
tilesViewResolver.setPrefix("/WEB-INF/Views/Page");
tilesViewResolver.setSuffix(".jsp");
tilesViewResolver.setViewClass(TilesView.class);
return tilesViewResolver;
}
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/static/**").addResourceLocations("/static/");
}
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder().indentOutput(true);
converters.add(new MappingJackson2HttpMessageConverter(builder.build()));
}
private Properties setHibernateProperties() {
Properties props = new Properties() {
{
setProperty("hibernate.hbm2ddl.auto", env.getProperty("hibernate.hbm2ddl.auto"));
setProperty("hibernate.dialect", env.getProperty("hibernate.dialect"));
setProperty("hibernate.generate_statistics", "true");
setProperty("hibernate.show.sql", "true");
}
};
return props;
}
@Bean
public LocalSessionFactoryBean sessionFactory() {
LocalSessionFactoryBean sessionFactoryBuilder = new LocalSessionFactoryBean();
sessionFactoryBuilder.setDataSource(prepareDataSource());
sessionFactoryBuilder.setPackagesToScan(new String[]{"com.wn.entity"});
sessionFactoryBuilder.setHibernateProperties(setHibernateProperties());
return sessionFactoryBuilder;
}
@Bean
public DataSource prepareDataSource() {
BasicDataSource dataSource = new BasicDataSource();
dataSource.setDriverClassName(env.getProperty("jdb.driver.class.name"));
dataSource.setUrl(env.getProperty("jdbc.url"));
dataSource.setUsername(env.getProperty("jdbc.user.name"));
dataSource.setPassword(env.getProperty("jdbc.password"));
return dataSource;
}
@Bean
public HibernateTransactionManager transactionManager(SessionFactory sessionFactory) {
HibernateTransactionManager txManager = new HibernateTransactionManager();
txManager.setSessionFactory(sessionFactory);
return txManager;
}
@Bean
public PersistenceExceptionTranslationPostProcessor exceptionTranslation() {
return new PersistenceExceptionTranslationPostProcessor();
}
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurerAdapter() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**");
}
};
}
@Bean
public TilesConfigurer getTilesConfigurer() {
TilesConfigurer tilesConfigurer = new TilesConfigurer();
tilesConfigurer.setCheckRefresh(true);
tilesConfigurer.setDefinitionsFactoryClass(TilesDefinitionsConfig.class);
return tilesConfigurer;
}
public class ApplicationInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext container) throws ServletException {
AnnotationConfigWebApplicationContext rootCtx = new AnnotationConfigWebApplicationContext();
rootCtx.register(AppConfig.class);
container.addListener(new ContextLoaderListener(rootCtx));
AnnotationConfigWebApplicationContext annotationConfigWebAppCtx = new AnnotationConfigWebApplicationContext();
annotationConfigWebAppCtx.register(DispatcherServlet.class);
ServletRegistration.Dynamic servlet = container.addServlet("dispatcher", new DispatcherServlet(rootCtx));
servlet.setLoadOnStartup(1);
servlet.addMapping("/");
}
//TilesDefinitionConfig
public final class TilesDefinitionsConfig implements DefinitionsFactory{
private static final Map<String,Definition> tilesDefinitions = new HashMap<>();
private static final Attribute BASE_TEMPLATE = new Attribute("/WEB-INF/Views/tiles/layouts/layout.jsp");
@Override
public Definition getDefinition(String name, Request tilesContext) {
return tilesDefinitions.get(name);
}
private static void addDefaultLayoutDef(String name, String title, String body) {
Map<String, Attribute> attributes = new HashMap<>();
attributes.put("title", new Attribute(title));
attributes.put("header", new Attribute("/WEB-INF/Views/tiles/template/header.jsp"));
attributes.put("menu", new Attribute("/WEB-INF/Views/tiles/template/menu.jsp"));
attributes.put("body", new Attribute(body));
attributes.put("footer", new Attribute("/WEB-INF/Views/tiles/template/footer.jsp"));
tilesDefinitions.put(name, new Definition(name, BASE_TEMPLATE, attributes));
}
public static void addDefinitions(){
addDefaultLayoutDef("home","Home", "/WEB-INF/Views/Page/home.jsp");
}
public static void addDefinitionsSystem() {
addDefaultLayoutDef("system","Systemy", "/WEB-INF/Views/Page/system.jsp");
}
public static void addDefinitionsDeal() {
addDefaultLayoutDef("deal","Umowy", "/WEB-INF/Views/Page/deal.jsp");
}
public static void addDefinitionsContact() {
addDefaultLayoutDef("contact","Kontakt", "/WEB-INF/Views/Page/contact.jsp");
}
}
@Controller公共类SystemController
将controller注释放入类中,然后重新部署。对日志启用调试,然后检查日志中的值:RequestMappingHandlerMapping:-将“{[/Home],Methods=[GET]}”映射到...
包含瓷砖定义的“general.xml”: 例外情况: dispatcher-servlet.xml: web.xml
我刚开始学习Spring MVC和tomcat。 我想通过Spring和ThymeLeaf VewTemplate引擎显示html页面。 但它不起作用。 下面是我的配置文件和控制器。 网状物xml文件 /webapp/WEB-INF/DispatcherServlet-serlvet。xml 和控制器 我在浏览器上键入localhost:9000/hello,然后浏览器显示此错误消息。HTTP状态
Springboot 2.5.13,swagger2:实现" io . spring fox:spring fox-boot-starter:3 . 0 . 0 "实现" io . spring fox:spring fox-swagger-ui:3 . 0 . 0 " 运行时错误:无法解析名为“forward:/swagger ui/index.html”的视图
问题内容: 我想创建对外部表的引用。但我收到以下错误: 询问: 显示引擎INNODB STATUS \ G: 帖子表结构 问题答案: 只有InnoDB支持外键,而MyISAM不支持。即使可以,您也无法在不同类型的表之间创建关系。 因此,您需要将表转换为InnoDB。
错误:[vite]:Rollup无法解析从“src/routes/random.svelte”导入“@/sample.js”。这很可能是无意的,因为它可能会在运行时破坏应用程序。如果您确实想将此模块显式外部化,请将其添加到 Vite配置: