Coder Social home page Coder Social logo

springbootdemo's People

Contributors

tengj 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

springbootdemo's Issues

这两个文件几乎一模一样,意义在哪?

package com.dudu.service;

import com.dudu.domain.LearnResouce;
import com.dudu.tools.Page;

import java.util.Map;

/**
 * Created by tengj on 2017/4/7.
 */
public interface LearnService {
    int add(LearnResouce learnResouce);
    int update(LearnResouce learnResouce);
    int deleteByIds(String ids);
    LearnResouce queryLearnResouceById(Long learnResouce);
    Page queryLearnResouceList(Map<String,Object> params);
}
package com.dudu.dao;

import com.dudu.domain.LearnResouce;
import com.dudu.tools.Page;

import java.util.Map;

/**
 * Created by tengj on 2017/4/8.
 */
public interface LearnDao {
    int add(LearnResouce learnResouce);
    int update(LearnResouce learnResouce);
    int deleteByIds(String ids);
    LearnResouce queryLearnResouceById(Long id);
    Page queryLearnResouceList(Map<String,Object> params);
}

Windows 下 clone 时会由于 `chapter11/E:\test\logback.log` 这个文件出现异常

Windows 下 clone 时会由于 chapter11/E:\test\logback.log 这个文件出现异常,E:\test\logback.log 在 Windows 下不是一个合法的文件名。
用 IDEA 和 GitHub Desktop 客户端来 clone会直接报错失败,我是失败后手动用 git checkout -f HEAD 才解决了,希望能解决作者你这边能规避一下,方便 Windows 用户学习!🤗

Cloning into 'E:\Coding\Java\tutorial-projects\嘟嘟MD-Spring_Boot学习系列-SpringBootDemo'...
remote: Counting objects: 1022, done.        
Receiving objects:   0% (1/1022)   
Receiving objects:   1% (11/1022)   
Receiving objects:   2% (21/1022)   
Receiving objects:   3% (31/1022)   
Receiving objects:   4% (41/1022)   
Receiving objects:   5% (52/1022)   
Receiving objects:   6% (62/1022)   
...
...  
Receiving objects:  91% (931/1022), 16.12 MiB | 141.00 KiB/s   
Receiving objects:  91% (936/1022), 16.20 MiB | 149.00 KiB/s   
Receiving objects:  92% (941/1022), 16.20 MiB | 149.00 KiB/s   
remote: Total 1022 (delta 0), reused 0 (delta 0), pack-reused 1022        
Receiving objects:  93% (951/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  94% (961/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  95% (971/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  96% (982/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  97% (992/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  98% (1002/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects:  99% (1012/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects: 100% (1022/1022), 16.29 MiB | 147.00 KiB/s   
Receiving objects: 100% (1022/1022), 16.32 MiB | 420.00 KiB/s, done.
Resolving deltas:   0% (0/207)   
Resolving deltas:   1% (3/207)   
Resolving deltas:   3% (8/207)   
Resolving deltas:   5% (12/207)   
...
...
Resolving deltas:  96% (199/207)   
Resolving deltas:  97% (201/207)   
Resolving deltas:  98% (204/207)   
Resolving deltas: 100% (207/207)   
Resolving deltas: 100% (207/207), done.
error: unable to create file chapter11/E:\test\logback.log: Invalid argument
Checking out files:  28% (448/1569)   
Checking out files:  29% (456/1569)   
Checking out files:  30% (471/1569)   
Checking out files:  31% (487/1569)   
...
...
Checking out files:  95% (1491/1569)   
Checking out files:  96% (1507/1569)   
Checking out files:  97% (1522/1569)   
Checking out files:  98% (1538/1569)   
Checking out files:  98% (1552/1569)   
Checking out files:  99% (1554/1569)   
Checking out files: 100% (1569/1569)   
Checking out files: 100% (1569/1569), done.
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'

springboot访问jsp报404错误

访问jsp那章的代码,用intellij idea 直接跑springboot,访问页面报
There was an unexpected error (type=Not Found, status=404).
/WEB-INF/jsp/index.jsp
如果用maven的springboot run插件跑,可以正常访问。
这个文中所说的:
把provided 注释掉的情况中的---右键运行启动类,访问页面正常
不符合!望解惑

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.