include(2)
-
The current path, mp3/, didn't match any of these.
로그 에러 Not Found: /mp3/ mp3/urls.py에 아래와 같이 셋팅이 되어 있는데, 못 찾음 from django.urls import path from . import views app_name = 'mp3' urlpatterns = [ path('', views.index, name='index'), ] project/urls.py에 mp3 관련해서 아래 내용이 포함되어야 함 from django.contrib import admin from django.urls import path, include urlpatterns = [ path('mp3/', include('mp3.urls')), path('admin/', admin.site.urls), ]
2021.04.06 -
Spring Boot Maven build 대상 include/exclude
/static/test/*.*으로 셋팅하면 /test 아래의 파일만 포함 /static/test/**으로 셋팅하면 /test 아래의 모든 디렉토리 및 파일 포함 build 전에 clean을 먼저해야 적용됨 org.springframework.boot spring-boot-maven-plugin ${basedir}/src/main/resources /static/test/**
2021.03.15