web-inf

SpringMVC 注解开发

久未见 提交于 2019-12-09 01:10:09
先在一个包中创建一个类,然后再配置sprringmvacontroller.xml并链接到该类。 < context :component-scan base-package ="cn.happy.controllerreturn" ></ context :component-scan > 注解开发所创建的类及其方法 通配符:是一种符号,不是精确匹配,而是用来代替 ** 代表任意级别目录,或者没有目录 package cn.happy.Controler; import org.springframework.stereotype. Controller ; import org.springframework.ui.Model; import org.springframework.web.bind.annotation. PathVariable ; import org.springframework.web.bind.annotation. RequestMapping ; import org.springframework.web.bind.annotation.RequestMethod; /** * Created by java on 2017/8/18. */ @Controller @RequestMapping ( "/user" ) public

Problem with moving JSPs under WEB-INF directory

泄露秘密 提交于 2019-12-08 04:29:59
问题 I am facing a problem when I move my JSP files along with CSS and JS files under WEB-INF/web/ directory. The problem is that, when a JSP page loads, it does not load CSS and JS files. Please help if you have any idea about it. Thanks Umar 回答1: Unless you want to write controllers to serve the css/js files in the WEB-INF folder, you will need to move those files out of WEB-INF so that they can be served as static files by the app server. 回答2: WEB-INF is not web accessible, you need to put css

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml...

拈花ヽ惹草 提交于 2019-12-07 17:22:46
在jsp中用JSTL标签迭代集合中元素,却出现这个异常: org.apache.jasper.JasperException: /WEB-INF/jsp/home.jsp(3,62) PWC6188: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application /WEB-INF/jsp/home.jsp(3,62)文件如下: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset

tomcat中web项目编译后的结构

筅森魡賤 提交于 2019-12-06 14:10:57
一. jsp文件在WEB-INF中 原项目结构及编译后的项目结构,原web项目与编译文件的对应关系如下: java下面的.java文件----->WEB-INF下的classes中,target下的classes中 webapp中WEB-INF的pages------->WEB-INF下的pages中 jar包------>lib中 webapp中WEB-INF的web.xml------>WEB-INF下的web.xml 以上项目结构通过下面的路径可以访问 1 request.getRequestDispatcher("/WEB-INF/pages/login.jsp").forward(request,response); 二. jsp文件在resources中 原项目路径与编译后的项目结构对比 resources的pages---->target下的classes中,WEB-INF的classes 那么想要访问jsp文件,路径如下 1 request.getRequestDispatcher("/WEB-INF/classes/pages/login.jsp").forward(request,response); 备注: 在路径的开始加“/”代表的是当前应用下的文件 不加“/”代表雨当前类同级 如下: 则路径是"servlet/WEB-INF/classes/pages

运行JSP程序,总是报404

强颜欢笑 提交于 2019-12-06 11:02:57
创建了一个简单的jsp页面,用eclipse运行时,就是一直报错404;将tomcat等等环境变量重设了一遍,eclipse的配置重设了一遍,没解决。 网上搜了半天,终于找到原因:WEB-INF目录不被识别,将页面放在 WebContent目录下即可。 记住:JSP页面文件最好不要放在Web-INF目录下 来源: https://www.cnblogs.com/WYF166/p/11980236.html

在JSP里使用CKEditor4.4和CKFinder2.4

旧街凉风 提交于 2019-12-06 02:14:56
最近在做一个新闻发布平台,放弃了很早的FCKEditor,使用CKEditor和CKFinder,尽管免费的CKFinder是Demo版本,但是功能完整,而且用户都是比较集中精神发新闻的人,不会在意这个。按照官网的document一步一步配置,虽然并不难,但是有些东西特别分散,还是全英文的,所以我就整理了一下安装过程和配置,以及需要注意的一些问题。希望对大家有所帮助。 1. 下载CKEditor相关的安装文件 CKEditor: 在 http://ckeditor.com/download 页面左侧,可以下载到各种版本的CKEditor,包括完整版full、标准版standard、基础版basic等。在页面右侧上方,还有可定制的下载,可以选择Toolbar类型、插件、语言等。这里我们选择4.1版本的Full版本,下载后得到CKEditor_4.1_full.zip 。 CKEditor for java: 在 http://ckeditor.com/download 页面右侧下部,可以下载到用于服务器端的工具,记得选择for java版本。这里选择3.6.4版本。但是下载下来却是 ckeditor-java-core-3.5.3.jar。不知道为什么。 CKFinder: 在 http://cksource.com/ckfinder/trial 页面

java web开发入门六(spring mvc)基于intellig idea

谁说我不能喝 提交于 2019-12-05 08:43:50
spring mvc ssm=spring mvc+spring +mybatis spring mvc工作流程 1A)客户端发出http请求,只要请求形式符合web.xml文件中配置的*.action的话,就由DispatcherServlet来处理。 1B)DispatcherServlet再将http请求委托给映射器的对象来将http请求交给对应的Action来处理 2)映射器根据客户的http请求,再对比<bean name="/hello.action如果匹配正确,再将http请求交给程序员写的Action 3)执行Action中的业务方法,最终返回一个名叫ModelAndView的对象,其中封装了向视图发送的数据和视图的逻辑名 4)ModelAndView对象随着响应到到DispatcherServlet中了 5)这时DispatcherServlet收到了ModelAndView对象,它也不知道视图逻辑名是何意,又得委托一个名叫视图解析器的对象去具体解析ModelAndView对象中的内容 6)将视图解析器解析后的内容,再次交由DispatcherServlet核心控制器,这时核心控制器再将请求转发到具体的视图页面,取出数据,再显示给用户 XML实现spring mvc 开发步骤: 注意:使用的spring framework版本是:4.2.5 1.引入jar包:

Maven管理的jar没有发布到WEB-INF/lib下的解决方案

六眼飞鱼酱① 提交于 2019-12-05 04:07:44
标准web工程在eclipse中利用m2eclipse插件添加依赖管理后,在部署过程中没有将依赖的jar包自动拷贝到/WEB-INF/lib中。 参考了一些朋友的做法手动执行 [java] view plain copy mvn dependency:copy-dependencies -DoutputDirectory=src/main/webapp/WEB-INF/lib -DincludeScope=runtime 命令将jar包拷贝到/WEB-INF/lib目录下。 这种做法固然可以,但是也会带来一些不便。 1、需要手动执行命令。 2、不能时时更新。 以下列出网上查找到的解决方法,m2eclipse plugin方式已验证通过。 通过验证eclipse版本:eclipse-jee-helios-SR2-win32 m2eclipse插件地址:http://m2eclipse.sonatype.org/sites/m2e 标准web工程通过m2eclipse添加依赖管理步骤: 1、“Maven ” –> “Enable dependency Management“ 2、Web Deployment Assembly中添加maven dependencies 步骤如下图: 工程 -> 右键 -> preferences .classpath文件中会有修改 [xhtml]

RequestDispatcher.forward() to resource under “/WEB-INF” doesn't work in WebSphere

限于喜欢 提交于 2019-12-05 02:28:22
问题 In one of my servlets, I invoke RequestDispatcher.forward() call to a static resource somewhere under WEB-INF folder: request .getRequestDispatcher( "/WEB-INF/some/path/image.gif" ) .forward( request, response ); Navigating to this servlet works fine under Tomcat, Jetty et al., but does not work in WebSphere 7. The error I get (both in the browser and in the server logs) is Error 403: SRVE0190E: File not found: /WEB-INF/some/path/image.gif Initially I assumed that WebSphere may need some

安装jforum-2.1.9遇到的问题

心不动则不痛 提交于 2019-12-05 00:05:02
1、安装jforum-2.1.9报错'java.sql.SQLException: Unknown initial character set index '192' received from server. 在D:\apache-tomcat-7.0.52-ceshi\apache-tomcat-7.0.52-ceshi\webapps\jforum-2.1.9\WEB-INF\config\database\mysql\mysql.properties 文件中 database.connection.string=。。。。。。。后添加&useUnicode\=true&characterEncoding\=utf8 2、 在D:\apache-tomcat-7.0.52-ceshi\apache-tomcat-7.0.52-ceshi\webapps\jforum-2.1.9\WEB-INF\config\database\mysql\mysql_db_struct.sql 文件中 TYPE=替换为ENGINE= 3、图标:jforum\templates\default\images下放入zh_CN文件夹 来源: https://www.cnblogs.com/liang114/p/11890135.html