Coder Social home page Coder Social logo

javaeetest's Introduction

关注公众号,第一时间获取最新文章

qrcode_for_gh_d1ca11234a30_258

欢迎小伙伴star另外两个前后端分离的SpringBoot项目

【1.V部落,Vue+SpringBoot实现的多用户博客管理平台!】
【2.vhr,微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。】

案例详解地址

案例 案例详解地址
Test4 Spring基础配置
Test5 Spring基础配置
Test6-AOP Spring基础配置
Test6-AOP Spring基础配置
Test7-Scope Spring常用配置
Test8-EL Spring常用配置
Test9-BeanLiftCycle Spring常用配置
Test10-Profile Spring常用配置
Test11-Event Spring常用配置
Test12-Aware Spring常用配置(二)
Test13-TaskExecutor Spring常用配置(二)
Test14-Scheduled Spring常用配置(二)
Test15-Conditional Spring常用配置(二)
Test16-GroupAnno Spring常用配置(二)
Test17-Test Spring常用配置(二)
Test18-SpringMVC1 SpringMVC基础配置(通过注解配置,非xml配置)
Test18-SpringMVC2 SpringMVC基础配置(通过注解配置,非xml配置)
Test18-SpringMVC3 SpringMVC常用配置
Test19-SpringBoot2 初识SpringBoot框架
Test19-MyStarter 初识SpringBoot框架(二)之DIY一个SpringBoot的自动配置
Test20-Thymeleaf1 使用SpringBoot开发Web项目,使用SpringBoot开发Web项目(二)之添加HTTPS支持
Test20-WebSocket 在SpringBoot框架下使用WebSocket实现消息推送
Test21-WebChat 在SpringBoot框架下使用WebSocket实现聊天功能
Test22-JPA 初识在SpringBoot中使用JPA
Test23-REST 在SpringBoot中输出REST资源
Test24-Transaction 在SpringBoot中使用数据库事务
Test25-Cache 在SpringBoot中使用数据缓存
Test26-Security 在SpringBoot中使用SpringSecurity实现权限控制
Test27-mybatis2 初识mybatis
Test27-mybatis3 初识mybatis(二)
Test27-mybatis4 mybatis常用配置
Test27-mybatis5 mybatis映射器配置细则
Test27-mybatis6 关于mybatis中typeHandler的两个案例
Test27-mybatis7 mybatis中resultMap配置细则
Test27-mybatis8 mybatis中的缓存问题
Test27-mybatis9 mybatis中的动态SQL
Test28-Spring1 Spring中bean实例化的三种方式
MyBlog 一个JavaWeb搭建的开源Blog系统,整合SSM框架
更多JavaWeb资料欢迎小伙伴访问我的个人博客:

江南一点雨的专栏

javaeetest's People

Contributors

lenve avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

javaeetest's Issues

Myblog的一个数据库连接错误

经过修改jdbc.properties之后,还是无法连接数据库,报错如下:
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:

Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Access denied for user 'root'@'localhost' (using password: YES))

The error may exist in file [C:\Users\Hasee\Downloads\JavaEETest-master\JavaEETest-master\MyBlog\target\MyBlog\WEB-INF\classes\mapping\ArticleMapper.xml]

The error may involve org.sang.dao.ArticleDao.getFirst10Article

The error occurred while executing a query

Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Access denied for user 'root'@'localhost' (using password: YES))

org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
javax.servlet.http.HttpServlet.service(HttpServlet.java:620)
org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

PasswordEncoder mapped for the id

java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null"

我是跟着你的博客做下来的,在我本地运行报这个错。不清楚为什么

怎么让项目跑起来

test开头的项目都有main函数,但是不知道怎么让它跑起来(用applet,applcation,Junit....?),用上述方式运行都无法选中main函数,望不吝赐教,用的idea工具

Test26Security 编译运行错误

HI~, springboot新手,在eclipse下使用maven install 编译运行报错:

Results :

Tests in error:
Test26SecurityApplicationTests.contextLoads ? IllegalState Failed to load Appl...

Tests run: 1, Failures: 0, Errors: 1, Skipped: 0

相关拦截失效

Test4 | Spring基础配置
Test5 | Spring基础配置
Test6-AOP|Spring基础配置
以上三个链接已经失效

改成gradle报错

Test20-Thymeleaf1 项目能改一个gradle 版本么。 自己改成gradle版本总是报错:
2017-10-11 15:49:08.885 INFO 31360 --- [nio-8443-exec-1] o.a.c.h.Http11Processor : Error parsing HTTP request header
Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.

java.lang.IllegalArgumentException: Invalid character found in method name. HTTP method names must be tokens
at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:421) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:667) [tomcat-embed-core-8.5.11.jar:8.5.11]

拿了你的项目可以直接跑的

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.