728x90

이클립스 설치위치/configuration/.settings/org.eclipse.ui.ide.prefs 삭제 후 재실행

 

'JAVA' 카테고리의 다른 글

Summernote 다운, 적용하기  (0) 2021.08.30
JSTL 연결하기  (0) 2021.08.10
jQuery 연결하기  (0) 2021.08.09
소켓 (Socket)  (0) 2021.08.03
Net  (0) 2021.08.03
728x90

내용 입력 에디터가 필요할 때 사용하는 프로그램으로, 다운받아 연결하면 간단하게 에디터를 가져와 쓸 수 있다. 

 

https://summernote.org/

 

Summernote - Super Simple WYSIWYG editor

Super Simple WYSIWYG Editor on Bootstrap Summernote is a JavaScript library that helps you create WYSIWYG editors online.

summernote.org

 

 

Getting started 클릭

 

Download compiled 클릭하여 다운받은 후 압축풀기

 

사용하고자 하는 프로젝트의 webapp폴더에 압축을 푼 파일 넣기

 

사용하고자 하는 jsp파일의 <html>태그 위에 <!DOCTYPE html>태그 추가

<!-- include libraries(jQuery, bootstrap) --> 
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet"> 
<script src="https://code.jquery.com/jquery-3.5.1.min.js">
</script> 
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js">
</script>
<!-- include summernote css/js -->
<link href="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.css" rel="stylesheet"> 
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.js">
</script>

<head>태그 안에 위 코드 추가

 

<script type="text/javascript">
	$(document).ready(function() {
		$('#content').summernote({
			height : 400
		});
	});
</script>

<body>태그 안에 위 코드 추가

 

 

 

'JAVA' 카테고리의 다른 글

Switch Workwpace 삭제 방법  (0) 2021.11.23
JSTL 연결하기  (0) 2021.08.10
jQuery 연결하기  (0) 2021.08.09
소켓 (Socket)  (0) 2021.08.03
Net  (0) 2021.08.03
728x90

http://archive.apache.org/dist/jakarta/taglibs/standard/

 

Index of /dist/jakarta/taglibs/standard

Index of /dist/jakarta/taglibs/standard Name Last modified Size Description Parent Directory - binaries/ 2005-10-05 20:39 - source/ 2005-10-05 20:38 - Standard Taglib 1.1.x Releases This directory contains releases for the 1.1.x versions of the Standard Ta

archive.apache.org

위 사이트 접속

 

binaries 클릭

 

jakarta-taglibs-standard-1.1.2 zip 클릭하여 다운후 압축풀기

 

다운받은 파일의 lib폴더를 이클립스 프로젝트의 WEB-INF폴더에 붙여넣기


http://www.servlets.com/cos/

 

Servlets.com | com.oreilly.servlet

 

www.servlets.com

위 사이트 접속

 

스크롤을 아래로 내려 cos-20.08.zip 파일 다운후 압축풀기

 

 

다운받은 파일의 lib폴더 내의 jar파일을 위에서 붙여넣기했던 lib폴더에 붙여넣기

'JAVA' 카테고리의 다른 글

Switch Workwpace 삭제 방법  (0) 2021.11.23
Summernote 다운, 적용하기  (0) 2021.08.30
jQuery 연결하기  (0) 2021.08.09
소켓 (Socket)  (0) 2021.08.03
Net  (0) 2021.08.03
728x90

https://jquery.com/

 

jQuery

What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.

jquery.com

위 링크로 들어가서 Download jQuery 클릭

 

http://code.jquery.com 클릭

 

3.x버전 uncompressed 클릭

카피 후 해드태그 사이 스타일태그 아래에 복사

'JAVA' 카테고리의 다른 글

Summernote 다운, 적용하기  (0) 2021.08.30
JSTL 연결하기  (0) 2021.08.10
소켓 (Socket)  (0) 2021.08.03
Net  (0) 2021.08.03
GUI  (0) 2021.08.01

+ Recent posts