Galaxy S7 Nougat Update
'스마트폰 > Galaxy S7' 카테고리의 다른 글
삼성 갤럭시 S7 누가 업데이트 예정일 (Samsung Galaxy S7 Nougat Update) (0) | 2017.01.18 |
---|
삼성 갤럭시 S7 누가 업데이트 예정일 (Samsung Galaxy S7 Nougat Update) (0) | 2017.01.18 |
---|
삼성 갤럭시 앱스에 공지사항으로 올라온 내용입니다.
터키지역 서머타임 관련해서 논란이 된적이 있습니다.
업데이트가 진행 되네요
터키지역 서머타임 관련 업데이트 : 갤럭시 S5 / J5 / S5 광대역 LTE-A / S6 엣지 플러스 / 노트 5
단말 보안관련 : 노트 5 / S6 엣지 플러스
노트 7은 2017년 1월 10일부터 배터리 15%제한 업데이트를 진행합니다.
안드로이드 화면 고정(어플리케이션 고정) (0) | 2019.05.17 |
---|---|
2017년 3월 삼성 스마트폰 업데이트 예정 (0) | 2017.03.06 |
2017년 2월 삼성 스마트폰 업데이트 예정 (0) | 2017.02.23 |
삼성 갤럭시 S7 누가 업데이트 관련하여 공지사항이 올라왔습니다.
삼성 갤럭시 앱스에 올라온 공지사항 입니다.
1월 19일 예정이기 때문에 미뤄질 수도 있으므로 참고만 해주세요
갤럭시 S7 누가 정식 펌웨어 업데이트 (0) | 2017.01.18 |
---|
연산자 |
의미 |
입력 예제 |
출력값 |
+ |
더하기 |
1+1 |
2 |
- |
빼기 |
4-1 |
3 |
* |
곱하기 |
2*3 |
6 |
/ |
나누기 (정수값과 소숫점 표시) |
3/2 |
1.5 |
// |
나누기 (정수값만 표시) |
3//2 |
1 |
% |
나머지 |
10%3 |
1 |
1 | print("Hello, World") | cs |
Hello, World를 출력합니다.
1 2 3 | print("10을 3으로 나누기 :" , 10/3) print("10을 3으로 나눈 나머지 :", 10%3) print("10을 3으로 나누면", 10//3,"이고 나머지는",10%3,"이다") | cs |
파이썬파일 exe 배포 (0) | 2019.03.15 |
---|---|
심심해서 만들어 본 모니터 가로 세로 길이 계산 (0) | 2018.09.21 |
파이썬 엑셀 파일 읽기 (0) | 2018.09.18 |
3. 파이썬(Python)의 변수 (0) | 2017.02.28 |
1. 파이썬 설치하기 (0) | 2017.01.11 |
윈도우에서 파이썬(Python)을 설치하는 방법입니다.
먼저 http://www.python.org/ 홈페이지에 접속합니다.
Downloads 메뉴를 클릭하면 파이썬을 다운로드 받을 수 있습니다.
2017년 1월 현재 최신버전은 Python 3.6.0과 2.7.13입니다.
파이썬의 3.X버전과 2.X 버전의 차이가 크기때문에 두개 모두 사용하고 있습니다.
이 블로그에서는 3버전에 대해 포스팅 할 예정이므로 이 블로그를 참고하실 분은 3버전을 다운받아 주시길 바랍니다.
설치파일을 실행한 상태 입니다.
Install Now를 클릭해 주시면 아래 사진과 같이 설치를 시작합니다.
설치가 완료되었으면 Close를 눌러 완료합니다.
이제 파이썬 사용을 위한 준비가 끝났습니다.
파이썬파일 exe 배포 (0) | 2019.03.15 |
---|---|
심심해서 만들어 본 모니터 가로 세로 길이 계산 (0) | 2018.09.21 |
파이썬 엑셀 파일 읽기 (0) | 2018.09.18 |
3. 파이썬(Python)의 변수 (0) | 2017.02.28 |
2. 파이썬(Python) 사용하기 (0) | 2017.01.13 |
1 2 3 4 5 6 7 8 9 | <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>제목을 입력하세요</title> </head> <body> </body> </html> | cs |
brackets 플러그인 (0) | 2016.07.07 |
---|
html5 기본 예제 (0) | 2017.01.08 |
---|
1 2 3 4 5 6 7 8 9 10 11 12 | <Resource name = "jdbc/oracle" auth = "Container" type = "javax.sql.DataSource" driverClassName = "oracle.jdbc.OracleDriver" url = "jdbc:oracle:thin:@localhost:xe" username = "DB_ID" password = "DB_PW" maxActive = "50" maxIdle = "20" maxWait = "-1" /> | cs |
JDK 설치 & 환경변수 설정 (0) | 2016.05.05 |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.mybatis</groupId> <artifactId>controller</artifactId> <name>03_MyBatis</name> <packaging>war</packaging> <version>1.0.0-BUILD-SNAPSHOT</version> <properties> <java-version>1.8</java-version> <org.springframework-version>4.0.0.RELEASE</org.springframework-version> <org.aspectj-version>1.6.10</org.aspectj-version> <org.slf4j-version>1.6.6</org.slf4j-version> </properties> <!-- 사설 저장소 추가 --> <repositories> <repository> <id>codelds</id> <url>http://code.lds.org/nexus/content/groups/main-repo</url> </repository> </repositories> <dependencies> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${org.springframework-version}</version> <exclusions> <!-- Exclude Commons Logging in favor of SLF4j --> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${org.springframework-version}</version> </dependency> <!-- AspectJ --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>${org.aspectj-version}</version> </dependency> <!-- Oracle JDBC --> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.3</version> </dependency> <!-- commons-dbcp --> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <!--Spring-JDBC --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${org.springframework-version}</version> </dependency> <!-- mybatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.2.8</version> </dependency> <!-- mybatis-spring --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.2.2</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${org.slf4j-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${org.slf4j-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${org.slf4j-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <exclusions> <exclusion> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> </exclusion> <exclusion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> </exclusion> <exclusion> <groupId>com.sun.jdmk</groupId> <artifactId>jmxtools</artifactId> </exclusion> <exclusion> <groupId>com.sun.jmx</groupId> <artifactId>jmxri</artifactId> </exclusion> </exclusions> <scope>runtime</scope> </dependency> <!-- @Inject --> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <!-- Servlet --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <additionalProjectnatures> <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature> </additionalProjectnatures> <additionalBuildcommands> <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand> </additionalBuildcommands> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> <compilerArgument>-Xlint:all</compilerArgument> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>org.test.int1.Main</mainClass> </configuration> </plugin> </plugins> </build> </project> | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <!-- The definition of the Root Spring Container shared by all Servlets and Filters --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/root-context.xml</param-value> </context-param> <!-- Creates the Spring Container shared by all Servlets and Filters --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- Processes application requests --> <servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- 한글깨짐 방지 --> <filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app> | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | <?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure --> <!-- Enables the Spring MVC @Controller programming model --> <annotation-driven /> <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory --> <resources mapping="/resources/**" location="/resources/" /> <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory --> <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <beans:property name="prefix" value="/WEB-INF/views/" /> <beans:property name="suffix" value=".jsp" /> </beans:bean> <context:component-scan base-package="com.mybatis.controller" /> <!-- 데이터 소스(DB 접속 정보) --> <beans:bean name="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <beans:property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" /> <beans:property name="url" value="jdbc:oracle:thin:@localhost:1521:xe" /> <beans:property name="username" value="DATABASE_ID" /> <beans:property name="password" value="DATABASE_PASSWORD" /> </beans:bean> <!-- 마이바티스 mapper(쿼리 xml) 위치설정 --> <beans:bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <beans:property name="dataSource" ref="dataSource" /> <beans:property name="mapperLocations" value="classpath:com/mybatis/dao/*.xml"/> </beans:bean> <!-- sqlsession template 설정 (DB처리 관련기능 처리) --> <beans:bean id="mybatisMapper" class="org.mybatis.spring.SqlSessionTemplate"> <beans:constructor-arg index="0" ref="sqlSessionFactory"/> </beans:bean> </beans:beans> | cs |
jquery를 이용한 ajax json (0) | 2017.08.28 |
---|---|
회원가입 (0) | 2017.08.24 |
STS설정 및 스프링 한글깨짐 방지 설정 (0) | 2016.06.13 |