Legacy
-
Express의 미들웨어들Legacy/Node.js 2017. 1. 14. 01:49
참고 - [3판] 모던 웹을 위한 Node.js 프로그래밍 (윤인성) Express의 미들웨어들 - http://expressjs.com/en/resources/middleware.html 1. router 미들웨어 Express에 내장되어 있는 미들웨어로 별로 미들웨어라는 느낌을 받지 않고 사용할 수 있음.추가적인 모듈 설치 및 require 없이 app.get(), app.post() 등과 같은 메소드 호출만 필요함. // 모듈을 추출합니다. var express = require('express'); // 서버를 생성합니다. var app = express(); // 라우터를 설정합니다. app.get('/a', function (request, response) { response.send('Go..
-
[Spring] Current request is not of type [org.springframework.web.multipart.MultipartHttpServletRequest]:Legacy/문제해결 2016. 11. 6. 17:44
다음 수정 후 http://www.egovframe.go.kr/uss/olh/qna/QnaInqireCoUpdt.do?qaId=QA_00000000000013994&passwordConfirmAt= 메이븐에서 commons-io 추가 : https://mvnrepository.com/artifact/commons-io/commons-io/2.4
-
[CentOS]Owncloud 권한 문제Legacy/Server 2016. 9. 14. 00:25
과 클라우드 서버 구축 도중 문제 발생 Can't write into config directory!This can usually be fixed by giving the webserver write access to the config directory. semanage fcontext -a -t httpd_sys_rw_content_t '/var/www/html/owncloud/config'semanage fcontext -a -t httpd_sys_rw_content_t '/var/www/html/owncloud/apps'semanage fcontext -a -t httpd_sys_rw_content_t '/var/www/html/owncloud/.htaccess'semanage fcontext -..
-
-
-
-
[Ubuntu] Ubuntu 16.04 APM 설치Legacy/Server 2016. 6. 5. 20:54
다른 블로그에 올라와 있는 APM 설치글들이 대부분 14.04, 12 버전을 기준으로 php5를 설치했기 때문에 작성 - 현재 php5는 apt-get으로 설치할 수 없음. XE는 더이상 php5에서 돌아가지도 않고.. apt-get 업데이트 및 업그레이드 apt-get updateapt-get upgrade Apache 2.4 apt-get -y install apache2 PHP 7 apt-get -y install php7.0 libapache2-mod-php7.0systemctl restart apache2 MYSQL apt-get install mysql-serverapt-get install mysql-client