会员
周边
捐助
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
追梦者丶
博客园
首页
联系
订阅
管理
上一页
1
···
14
15
16
17
18
19
20
21
22
···
24
下一页
2018年11月1日
查看Spring MVC 父容器和子容器的对象的实例
摘要: 话不多说,直接上案例 启动服务器,然后访问/Ioc 这样就可以查看,父容器和子容器中的对象实例啦。
阅读全文
posted @ 2018-11-01 09:37 追梦滴小蜗牛
阅读(725)
评论(0)
推荐(1)
编辑
Spring mvc i18n国际化的简单demo
摘要: 在渲染视图的xml文件中,配置一个i18nBean 实现两个接口: SessionLocaleResolver --> 加载资源主题 ReloadableResourceBundleMessageSource --> 加载文件 @Controller 页面: messages中的语言资源包。 语言资
阅读全文
posted @ 2018-11-01 09:09 追梦滴小蜗牛
阅读(1154)
评论(0)
推荐(0)
编辑
2018年10月31日
springMVC中使用 JSR-303验证器( Validation 接口 )
摘要: 在pom.xml,添加validator验证器的依赖 新建一个Cat类 package com.oukele.model; import javax.validation.constraints.*; public class Cat { @NotBlank//验证字符串非空 private Str
阅读全文
posted @ 2018-10-31 16:20 追梦滴小蜗牛
阅读(518)
评论(0)
推荐(0)
编辑
2018年10月29日
spring MVC 后端 接收 前端 批量添加的数据(简单示例)
摘要: 第一种方式:(使用ajax的方式) 前端代码: <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <script sr
阅读全文
posted @ 2018-10-29 16:22 追梦滴小蜗牛
阅读(5755)
评论(1)
推荐(1)
编辑
idea中使用JRebel插件
摘要: 首先 等待下载 点击Restart idea (重启idea) 然后等待idea 进行激活 记得勾选下面的那个复选框 激活url:http://139.199.89.239:1008/88414687-3b91-4286-89ba-2dc813b107ce 如果出现提示路径问题(一般都是 电脑用户的
阅读全文
posted @ 2018-10-29 15:37 追梦滴小蜗牛
阅读(568)
评论(1)
推荐(0)
编辑
2018年10月22日
简单使用logback日志框架
摘要: logback_config.xml 配置文件信息 <?xml version="1.0" encoding="UTF-8"?> <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocati
阅读全文
posted @ 2018-10-22 15:11 追梦滴小蜗牛
阅读(569)
评论(0)
推荐(0)
编辑
2018年10月19日
使用 mybatis-Generator 自动生成DAO、Model、Mapping相关文件
摘要: 1、Maven项目 2、配置generatorConfig.xml文件 3、在pom.xml中配置插件 2、generatorConfig.xml文件信息 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration
阅读全文
posted @ 2018-10-19 15:07 追梦滴小蜗牛
阅读(429)
评论(0)
推荐(0)
编辑
2018年10月18日
mybatis 关联查询和嵌套查询的简单示例
摘要: 两个表: Customer 顾客表 create table if not exists customer( customer_id int primary key auto_increment, first_name varchar(20), last_name varchar(20), comp
阅读全文
posted @ 2018-10-18 19:47 追梦滴小蜗牛
阅读(4804)
评论(0)
推荐(0)
编辑
2018年10月11日
解决 Maven项目进行编译( mvn compile )时出现的错误
摘要: 错误信息: 在 pom.xml 文件 设置一下Maven的属性 1 <!--Maven 属性--> 2 <properties> 3 <!--项目的编码格式--> 4 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
阅读全文
posted @ 2018-10-11 10:24 追梦滴小蜗牛
阅读(7928)
评论(0)
推荐(0)
编辑
2018年10月10日
命令方式 搭建 (简易)Maven项目
摘要: 原料:1、配好的Maven环境变量 2、c m d命令 win + r 输入 cmd 切换到此项目所要存在的位置 使用命令创建文件夹 切换 到 maven_demo中 输入 cd maven_demo 使用命令创建maven项目结构(类似下面这种结构,规范点的.) md --> 创建文件夹 src
阅读全文
posted @ 2018-10-10 19:57 追梦滴小蜗牛
阅读(323)
评论(0)
推荐(0)
编辑
上一页
1
···
14
15
16
17
18
19
20
21
22
···
24
下一页
公告