EUNO.NEWS EUNO.NEWS
  • All (16518) +280
  • AI (2550) +21
  • DevOps (732) +17
  • Software (8645) +139
  • IT (4553) +100
  • Education (37) +2
  • Notice
  • All (16518) +280
    • AI (2550) +21
    • DevOps (732) +17
    • Software (8645) +139
    • IT (4553) +100
    • Education (37) +2
  • Notice
  • All (16518) +280
  • AI (2550) +21
  • DevOps (732) +17
  • Software (8645) +139
  • IT (4553) +100
  • Education (37) +2
  • Notice
Sources Tags Search
한국어 English 中文
  • 1 week ago · software

    Ruby 클래스와 객체지향 프로그래밍

    기본 클래스 ruby class Test puts :Test.object_id.to_s def test puts :test.object_id.to_s @test = 10 puts :test.object_id.to_s end end t = Test.new t.test 생성자와 인스턴스...

    #ruby #classes #object-oriented programming #OOP #instance variables #constructor #programming examples
  • 1 week ago · software

    Ruby 제어문 - 조건문과 반복문

    조건문 ruby s1 = 'Jonathan' s2 = 'Jonathan' s3 = s1 if s1 == s2 puts 'Both Strings have identical content' else puts 'Both Strings do not have identical content'...

    #ruby #control flow #conditionals #loops #programming #syntax
  • 1 week ago · software

    Ruby 파일 처리와 시스템 명령

    파일 열기와 읽기 ruby File.open'p014constructs.rb', 'r' do |f1| while line = f1.gets puts line end end 파일 쓰기 ruby File.open'test.rb', 'w' do |f2| f2.puts 'Created by...

    #ruby #file-io #system-commands #load-require #find-module #environment-variables #scripting
  • 1 week ago · software

    Ruby 데이터 타입 - 문자열, 배열, 맵

    문자열 ruby 'a' 'a' 'a' + 'b' 'a'b' 'a' 3 => 'aaa' '2'.to_i => 2 문자열을 정수로 '2'.to_f => 2.0 문자열을 실수로 2.to_s => '2' 숫자를 문자열로 'a'.length => 1 .inspect 객체의 구조를 문자열로 변환...

    #ruby #data-types #strings #arrays #hash #range #string-interpolation #ruby-methods
  • 1 week ago · software

    Android 권한 (Permission) 완벽 가이드

    markdown !dss99911https://media2.dev.to/dynamic/image/width=50,height=50,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuplo...

    #android #permissions #runtime-permissions #manifest #mobile-development #kotlin #java
  • 1 week ago · software

    Spring Security 시작하기 - 기본 설정과 인증

    기본 설정 의존성 추가 Spring Security를 사용하려면 의존성만 추가하면 됩니다. 추가하는 것만으로 기본 보안이 활성화됩니다. Maven xml org.springframework.boot spring-boot-starter-security Gradle gradle imple...

    #spring #spring-security #authentication #authorization #java #maven #gradle #security
  • 1 week ago · software

    Hibernate 쿼리 완벽 가이드 - HQL과 Criteria API

    !dss99911https://media2.dev.to/dynamic/image/width=50,height=50,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuse...

    #Hibernate #HQL #Criteria API #Java #ORM #database queries #pagination
  • 1 week ago · software

    Spring Boot 로깅 설정 가이드 - Logback 설정과 활용

    markdown !dss99911https://media2.dev.to/dynamic/image/width=50,height=50,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuplo...

    #spring-boot #logback #logging #configuration #java #application-properties #debugging
  • 1 week ago · software

    Hibernate XML 설정 가이드 - 매핑, 캐시, 트랜잭션

    markdown !dss99911https://media2.dev.to/dynamic/image/width=50,height=50,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuplo...

    #hibernate #xml-configuration #orm #java #session-factory #database-connection #mapping #caching #transactions
  • 1 week ago · software

    I Built My First macOS App: TSnap – Instant OCR & Text Translation Anywhere

    The problem When working or reading on macOS, I often need to translate: - A piece of text inside an app - Text inside screenshots, images, or PDFs The usual w...

    #macOS #OCR #translation #menu-bar app #open-source #keyboard shortcuts
  • 1 week ago · software

    Spring Boot JSP 가이드 - 설정부터 Form 처리, 유효성 검증까지

    Introduction Spring Boot는 기본적으로 Thymeleaf를 권장하지만, 레거시 프로젝트나 특정 요구사항에 따라 JSP를 사용해야 할 때도 있습니다. 이 글에서는 Spring Boot에서 JSP를 설정하고 활용하는 방법을 알아봅니다. Dependencies Gradle...

    #spring-boot #jsp #java #web-development #spring-mvc #jstl #gradle #maven #configuration #view-templates
  • 1 week ago · software

    Spring Boot Actuator - 애플리케이션 모니터링 가이드

    Spring Boot Actuator는 운영 중인 애플리케이션의 상태를 모니터링하고 관리하기 위한 기능을 제공합니다. 설정, 메모리, CPU, 환경 변수, Bean 정보 등 다양한 정보를 확인할 수 있습니다. 설정 Gradle gradle implementation 'org.spring...

    #spring-boot #actuator #application-monitoring #java #metrics #health-check #configuration

Newer posts

Older posts
EUNO.NEWS
RSS GitHub © 2026