随笔分类 -  java框架+java进阶

spring+SpringMVC+mybati整合JBPM
摘要:网上看到这方面的资料很少,即使有也给的不全,我自己项目有这方面的需求,花了几天时间,终于整合成功。1原先的spring+SpringMVC+mybati配置 jdbc.xml ... 阅读全文
posted @ 2017-09-04 11:02 2637282556 阅读(345) 评论(0) 推荐(0)
mybaties+spring+springMVC+oracle+里面有一个创建百万数据库的案例
摘要:结构 pom.xml 4.0.0 org.storm storm 0.0.1-SNAPSHOT storm http://maven.apache.org 4.0.2.RELEASE ... 阅读全文
posted @ 2017-06-14 22:03 2637282556 阅读(169) 评论(0) 推荐(0)
SpringMVC原理图
摘要:SpringMVC原理图 阅读全文
posted @ 2017-04-14 19:30 2637282556 阅读(145) 评论(0) 推荐(0)
hibernate+spring+springMVC基本配置
摘要:web.xml contextConfigLocation classpath*:config/springAnnotation-*.xml org.springframework.web.context.Cont... 阅读全文
posted @ 2017-04-13 18:34 2637282556 阅读(125) 评论(0) 推荐(0)
spring+springMVC的基本配置
摘要:web.xml contextConfigLocation classpath*:config/springAnnotation-core.xml org.springframework.web.context... 阅读全文
posted @ 2017-04-13 17:17 2637282556 阅读(127) 评论(0) 推荐(0)
(推荐使用)SpringMVC注解,基本配置
摘要:基本 web.xml springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocation ... 阅读全文
posted @ 2017-04-12 23:36 2637282556 阅读(136) 评论(0) 推荐(0)
springMVC 注解 controller层的优化
摘要:1类中方法对应的URL请求路径有相同部分,可以放在类外面@Controller@RequestMapping("/user")public class LonginController { @RequestMapping("/login") //实际请求路径是... 阅读全文
posted @ 2017-04-12 22:58 2637282556 阅读(177) 评论(0) 推荐(0)
(基本不使用这种)springMVC注解
摘要:基本配置 web.xml springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocation ... 阅读全文
posted @ 2017-04-12 22:53 2637282556 阅读(130) 评论(0) 推荐(0)
springMVC访问静态资源
摘要:1.默认的访问的URL都会被DispatcherServlet所拦截,比如拦截规则定义为/; 也就是说,所有的请求都会被springMVC拦截,根据HandlerMapping的配置来匹配对应的URL映射,而对于静态资源来说,默认的Spring MVC是没有注册匹配... 阅读全文
posted @ 2017-04-12 22:33 2637282556 阅读(108) 评论(0) 推荐(0)
(不推荐使用)springMVC基本配置+继承MultiActionController来实现根据参数名指定要请求的方法
摘要:基本配置: web.xml springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocati... 阅读全文
posted @ 2017-04-12 18:19 2637282556 阅读(213) 评论(0) 推荐(0)
(不推荐使用)springMVC基本配置+controller层实现Controller接口
摘要:基本配置: web.xml springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocation ... 阅读全文
posted @ 2017-04-12 17:26 2637282556 阅读(287) 评论(0) 推荐(0)