xmlns

ssh整合

情到浓时终转凉″ 提交于 2020-02-08 22:57:07
1 整合jar包导入 2 web.xml的配置如下 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>sshzhenghe</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome

【SpringMVC学习】配置文件

女生的网名这么多〃 提交于 2020-02-08 16:59:23
确认SpringMVC依赖包导入无误 依赖配置 配置web.xml , 注册DispatcherServlet < ? xml version = "1.0" encoding = "UTF-8" ? > < web - app xmlns = "http://xmlns.jcp.org/xml/ns/javaee" xmlns : xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation = "http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version = "4.0" > < ! -- 1. 注册DispatcherServlet -- > < servlet > < servlet - name > springmvc < / servlet - name > < servlet - class > org . springframework . web . servlet . DispatcherServlet < / servlet - class > < ! -- 关联一个springmvc的配置文件 : 【servlet - name】 - servlet .

解决(An error happened during template parsing (template: "class path resource [templates/...])

左心房为你撑大大i 提交于 2020-02-08 13:03:22
解决(An error happened during template parsing (template: "class path resource [templates/...]) 问题分析 解题思路 排除自己问题所在 解决问题 问题分析 问题出现在无法跳转到视图层(view),且报错是:模板解析过程中发生错误(模板:“类路径资源[templates/index.html]”),我们尝试分析thymeleaf的运行机制, 简单讲是先读取配置文件 找到视图文件的根路径,并在根路径下寻找对应的视图文件并实现跳转 , 解题思路 由此我们首先想到自己的application.yml配置文件中thymeleaf是否配置错误, 其次,路径映射问题应该仔细查看controller层的请求和返回路径是否正确,包括 @RequestMapping("/index") 中 / 有没有, return "index"; 中index.html是否在yml配置文件的路径下。 最后进行百度 手动滑稽 排除自己问题所在 1、是否导入了thymeleaf依赖,请检查pom.xml 2、是否单词拼写正确 我们简单排除了后台可能产生的问题,我吸取了一些前辈的经验,将modelandview进行分析,得出一个结论, 视图与页面相关,模型与后台挂钩 ,问题极有可能出现在html文件中。 解决问题 有一个前提

HTML骨架结构

不羁岁月 提交于 2020-02-07 06:00:13
一个完整的HTML文档必须包含3个部分:文档声明、文档头部和文档主体。而正是它们构成了HTML的骨架结构。前面已经分别介绍过文档声明和文档头部,本文将详细介绍构成HTML骨架结构的基础元素 HTML <html> 元素代表HTML文档的根(root),其他所有元素都是该元素的后代。 <html> 与 </html> 标签限定了文档的开始点和结束点,在它们之间是文档的头部和主体。文档的头部由 <head> 标签定义,而主体由 <body> 标签定义 【xmlns】 xmlns属性用于指派文档的XML命名空间。预设值是" http://www.w3.org/1999/xhtml",这在XHTML中是必要的,而在HTML中则是可选的 <html xmlns="http://www.w3.org/1999/xhtml"> HEAD <head> 标签用于定义文档的头部,它是所有头部元素的容器。 <head> 大部分不可见,描述了文档的一些基本的属性和信息(可以呈现的是title和icon)。 <head> 元素下的子元素主要包括 <meta> 、 <title> 、 <base> 、 <link> 、 <style> 和 <script> 这六个元素 <title> 定义文档的标题,它是head部分中唯一必需的元素 如果在文档中忽略了 <head> 标签,则大部分浏览器会自动创建一个

幸运的数字转盘(Turntable)

爷,独闯天下 提交于 2020-02-06 12:24:54
幸运的数字转盘(Turntable) 示例 HTML CSS JS 示例 HTML < h1 > Give me a whack </ h1 > < div id = " spinner " > < svg xmlns = ' http://www.w3.org/2000/svg ' xmlns: xlink = ' http://www.w3.org/1999/xlink ' viewBox = ' 0 10 20 60 ' id = " clicker " > < path d = " M 3 20 Q 10 0 17 20 Q 10 100 3 20 " fill = " #ddd " /> </ svg > < svg xmlns = ' http://www.w3.org/2000/svg ' xmlns: xlink = ' http://www.w3.org/1999/xlink ' viewBox = ' 0 0 100 100 ' id = " wheel " > < mask id = " splineMask " > < rect x = " 0 " y = " 0 " width = " 100 " height = " 100 " fill = " white " /> < path d = " M48.5 33 Q 50 35 51.5 33 Q 50

cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 'mongo:mongo' 的声明

假如想象 提交于 2020-02-06 10:29:26
今天在spring中整合mongodb,我参考官网的配置配置xml如下: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mongo="http://www.springframework.org/schema/data/mongo" xsi:schemaLocation= "http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/data/mongo https://www.springframework.org/schema/data/mongo/spring-mongo.xsd http://www.springframework.org/schema

演示默认数据类型绑定的使用

放肆的年华 提交于 2020-02-05 20:19:43
以HttpServletRequest类型的使用为例,来演示默认数据类型绑定的使用 1.创建Web项目,并导入相关Jar包 2.在web.xml中配置Spring MVC的前端控制器等信息 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation<

spring-security整合spring-session

老子叫甜甜 提交于 2020-02-05 09:29:19
spring-security整合spring-session 引入依赖 增加spring-session.xml配置文件 在原有的spring-security.xml内容基础上,修改配置信息 完整的spring-security.xml配置如下 web.xml配置文件中增加如下配置,使spring-session生效 修改web.xml中spring-security过滤器配置 引入依赖 < dependency > < groupId > org . springframework . session < / groupId > < artifactId > spring - session < / artifactId > < version > 1.3 .3 . RELEASE < / version > < / dependency > 增加spring-session.xml配置文件 <?xml version="1.0" encoding="UTF-8"?> < beans xmlns = " http://www.springframework.org/schema/beans " xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance " xmlns: context = " http://www

Spring+SpringMVC+Mybatis 环境搭建

独自空忆成欢 提交于 2020-02-05 00:12:36
一、环境 mac + Idea + 数据库 mysql 二、项目整合过程 1⃣️. 创建动态Web项目,请参考: https://www.cnblogs.com/KennyWang0314/p/12261890.html 2⃣️.引入 jar 包 === ***注意:c3p0包依赖 mchange-commons 记得导入    3⃣️.文件配置 web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:application-base.xml</param-value> </context-param> <listener>

WPF中触发器的学习

爱⌒轻易说出口 提交于 2020-02-04 17:49:31
WPF中触发器的学习 WPF中的触发器可以用来设置控件的状态变化的时候发生的一些事情。 本案例说明的时先定义一个资源,类型是按钮类型,添加一个出发的事件是 鼠标悬停 时字体大小变成30,字体变成蓝色 < Window x: Class = " notes00.MainWindow " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns: x = " http://schemas.microsoft.com/winfx/2006/xaml " xmlns: d = " http://schemas.microsoft.com/expression/blend/2008 " xmlns: mc = " http://schemas.openxmlformats.org/markup-compatibility/2006 " xmlns: local = " clr-namespace:notes00 " mc: Ignorable = " d " xmlns: control = " clr-namespace:MyControl;assembly=MyControl " Title = " MainWindow " Height = " 400 " Width = " 400 "